@extends('layouts.app') @section('title') {{ __('messages.appointment.edit_appointment') }} @endsection @section('header_toolbar')

@yield('title')

@endsection @section('content')
@include('layouts.errors')
{{ Form::model($appointment, ['route' => ['appointments.update', $appointment->id], 'method' => 'patch', 'id' => 'editAppointmentForm']) }} @include('appointments.fields') {{ Form::close() }}
@include('appointments.templates.appointment_slot')
@endsection @section('scripts') @endsection