@extends('layouts.app') @section('content')

@lang('quickadmin.appointments.title')

{!! Form::open(['method' => 'POST', 'route' => ['admin.appointments.store']]) !!}
@lang('quickadmin.qa_create')
{!! Form::label('client_id', 'Client*', ['class' => 'control-label']) !!}

@if($errors->has('client_id'))

{{ $errors->first('client_id') }}

@endif
{!! Form::label('service_id', 'Service*', ['class' => 'control-label']) !!}

@if($errors->has('service_id'))

{{ $errors->first('service_id') }}

@endif
{!! Form::label('date', 'Date*', ['class' => 'control-label']) !!} {!! Form::text('date', old('date'), ['class' => 'form-control date', 'placeholder' => '', 'required' => '']) !!}

@if($errors->has('date'))

{{ $errors->first('date') }}

@endif

{!! Form::label('comments', 'Comments', ['class' => 'control-label']) !!} {!! Form::textarea('comments', old('comments'), ['class' => 'form-control ', 'placeholder' => '']) !!}

@if($errors->has('comments'))

{{ $errors->first('comments') }}

@endif
{!! Form::submit(trans('quickadmin.qa_save'), ['class' => 'btn btn-danger']) !!} {!! Form::close() !!} @stop @section('javascript') @parent @stop