@extends('front.layout') @section('header')

{{ trans('Create Appointment') }}

@endsection @section('content')

Create new Appointment with {{$contact->first_name.' '.$contact->last_name}}

{{ Form::open(array('id' => 'create_appointment_form',"data-toggle"=>"validator")) }}
{{ Form::text('start_time','',['class' => 'form-control','id' => 'start_time', 'required' => 'true']) }}
{{ Form::text('end_time','',['class' => 'form-control','id' => 'end_time', 'required' => 'true']) }}
{{ Form::textarea('description','',['class' => 'form-control','id' => 'description', 'rows' => 5]) }}
{{ Form::close() }}
@endsection @section('after_scripts') @endsection