@extends('layouts/contentLayoutMaster') @section('title', 'Edit Booking') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content') @if(session()->has('success')) @endif @if(session()->has('error')) @endif Programs - Edit Booking Back @if(isset($booking) && $booking != '[]' && $booking != null && isset($experiences) && $experiences != '[]' && $experiences != null && isset($member) && $member != '[]' && $member != null) @csrf * Experience: Select Experience @foreach($experiences as $experience) id == $booking->experience_id) selected @endif>{{ ucwords($experience->name) }} @endforeach @error('experience') {{ $message }} @enderror Price: Date: @isset($time) Duration: {{ $time->start_time. ' to '. $time->end_time }} @endisset Change duration to: Select Duration * Member: Name: {{ ucfirst($member->first_name).' '.ucfirst($member->last_name) }} Email: {{ $member->email }} Contact Number: {{ $member->contact_number }} * Booking Name: * Contact Person Name: * Email: * Contact Number: No Of Guests: @error('guests') {{ $message }} @enderror Payment Status: Select Payment Status payment_status == 'pending') selected @endif>Pending payment_status == 'success') selected @endif>Success @error('payment_status') {{ $message }} @enderror Save Changes @else Please add experience before booking...! @endif @endsection @section('vendor-script') {{-- vendor files --}} @endsection @section('page-script') @endsection