{{ html()->label('Name')->class('form-label') }} {{ html()->text('name')->class('form-control')->placeholder('Shift Name')->required() }} {{ html()->div('Please add Name')->class('invalid-feedback') }}
{{ html()->label('Break Time (In minutes)')->class('form-label') }} {{ html()->number('break_time')->class('form-control')->placeholder('Total Break Time')->required() }} {{ html()->div('Please add break_time')->class('invalid-feedback') }}
{{ html()->label('Min Start Time')->class('form-label') }} {{ html()->time('min_start_time')->class('form-control')->required() }} {{ html()->div('Please add min_start_time')->class('invalid-feedback') }}
{{ html()->label('Start Time')->class('form-label') }} {{ html()->time('start_time')->class('form-control')->required() }} {{ html()->div('Please add start_time')->class('invalid-feedback') }}
{{ html()->label('Max Start Time')->class('form-label') }} {{ html()->time('max_start_time')->class('form-control')->required() }} {{ html()->div('Please add max_start_time')->class('invalid-feedback') }}
{{ html()->label('Min End Time')->class('form-label') }} {{ html()->time('min_end_time')->class('form-control')->required() }} {{ html()->div('Please add min_end_time')->class('invalid-feedback') }}
{{ html()->label('End Time')->class('form-label') }} {{ html()->time('end_time')->class('form-control')->required() }} {{ html()->div('Please add end_time')->class('invalid-feedback') }}
{{ html()->label('Max End Time')->class('form-label') }} {{ html()->time('max_end_time')->class('form-control')->required() }} {{ html()->div('Please add max_end_time')->class('invalid-feedback') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control')->attributes(['rows' => 3]) }}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 3]) }}
{{ html()->button($editable ? 'Update' : 'Add WorkShift', 'submit')->class('btn btn-success') }}
@push('js') @endpush