{{ html()->label('Title')->class('form-label') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Title') }}
{{ html()->label('Appreciation Type')->class('form-label') }} {{ html()->select('type', [1 => 'Employee of the Month', 2 => 'Best Manger'])->class('form-select')->placeholder('Select Type') }}
{{ html()->label('Employee')->class('form-label') }} {{ html()->select('employee_id')->class('form-select')->placeholder('Select Employee') }}
{{ html()->label('Appreciated By')->class('form-label') }} {{ html()->select('appreciated_by')->class('form-select')->placeholder('Select Who Appreciated') }}
{{ html()->label('Appreciated Date')->class('form-label') }} {{ html()->date('appreciated_date')->class('form-control')->placeholder('Select Date') }}
{{ html()->label('Description')->class('form-label') }} {{ html()->textarea('description')->class('form-control')->attributes(['rows' => 5]) }}
{{ html()->label('Remarks')->class('form-label') }} {{ html()->textarea('remarks')->class('form-control')->attributes(['rows' => 5]) }}
{{ html()->button($editable ? 'Update' : 'Add Appreciation', 'submit')->class('btn btn-success') }}