@extends('layouts.'.env('THEME'))
@section('moreStyle')
@include('staff.schedule.style')
@endsection
@section('content')
{!! Form::model($time_slot, ['route' => ['update_appointment', $time_slot->id], 'files' => true]) !!}
@method('PATCH')
{!! Form::token() !!}
@include('admin.timeslot.form')
@foreach($time_slot->notes as $note)
@endforeach
@php $no_note_state = true; @endphp
{!! Form::hidden('author_id', auth()->user()->id) !!}
@include('staff.notes.form')
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection
@section('script')
@include('staff.schedule.script')
@include('staff.notes.script')
@endsection