{!! Form::open(['url' => action('WorkShiftController@store'), 'method' => 'post', 'id' => 'add_WorkShift', 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('name', 'WorkShift Name' . ':*') !!}
{!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => 'WorkShift Name']) !!}
{!! Form::label('start_time', 'Start Time' . ':*') !!}
{!! Form::time('start_time', null, ['class' => 'form-control', 'required', 'placeholder' => 'Start Time']) !!}
{!! Form::label('end_time', 'End Time' . ':*') !!}
{!! Form::time('end_time', null, ['class' => 'form-control', 'required', 'placeholder' => 'End Time']) !!}
{!! Form::label('weekly_holidays', 'Weekly Holidays' . ':*') !!}
{!! Form::hidden('weekly_holidays', 0, null); !!}
{!! Form::checkbox('weekly_holidays', 1, null, [ 'class' => 'input-icheck']); !!} {{ __( 'Weekly Holidays' ) }}
{!! Form::close() !!}