@extends('layouts.app')
@section('title')
{{ __('messages.appointment.new_appointment') }}
@endsection
@section('header_toolbar')
@endsection
@section('content')
@include('layouts.errors')
{{ Form::open(['id' => 'appointmentForm']) }}
@include('appointments.fields')
{{ Form::close() }}
@include('appointments.templates.appointment_slot')
@endsection
@section('scripts')
@endsection