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

@lang('quickadmin.appointments.title')

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

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

{{ $errors->first('employee_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('start_time', 'Start time*', ['class' => 'control-label']) !!} {!! Form::text('start_time', old('start_time'), ['class' => 'form-control timepicker', 'placeholder' => '', 'required' => '']) !!}

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

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

@endif
{!! Form::label('finish_time', 'Finish time', ['class' => 'control-label']) !!} {!! Form::text('finish_time', old('finish_time'), ['class' => 'form-control timepicker', 'placeholder' => '']) !!}

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

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

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