@extends('layouts.admin-portal') @section('page-title') Create Session @endsection @section('style') @endsection @section('content') Create Session @if(count($errors) > 0 ) × @foreach($errors->all() as $error) {{$error}} @endforeach @endif {{-- @dd('here')--}} @csrf Trainer Select Trainer @if(count($trainers) > 0) @foreach($trainers as $trainer) id ? 'selected' : '' }}>{{ $trainer->name }} @endforeach @endif Customers Select Customer @if(count($customers) > 0) @foreach ($customers as $item) id ? 'selected' : '' }}> {{ $item->first_name.' '.$item->last_name }} @endforeach @endif Session Type Time Zone @if(count($zones) > 0) @foreach ($zones as $item) id ? 'selected' : '' }}>{{ $item->zone_name.' '.$item->time_zone }} @endforeach @endif Additional Notes {{ old('notes', '') }} Session Date Session Time Action Assign Session @endsection @section('js') @endsection