{{ html()->label('Employee')->class('form-label') }} {{ html()->select('employee_id')->class('form-select')->placeholder('Select Employee') }}
{{ html()->label('Clock In')->class('form-label') }} {{ html()->time('clock_in_time')->class('form-control') }}
{{ html()->label('Clock Out')->class('form-label') }} {{ html()->time('clock_out_time')->class('form-control') }}
{{ html()->label('Date')->class('form-label') }} {{ html()->date('date')->class('form-control')->placeholder('Attendance Date') }}
{{ html()->label('Working From')->class('form-label') }} {{ html()->select('work_from_type', ['home' => 'Home', 'office' => 'Office', 'other' => 'Other'])->class('form-select')->placeholder('Working From') }}
{{ html()->button($editable ? 'Update' : 'Mark Attendance', 'submit')->class('btn btn-success') }}