{{ html()->label('Title')->class('form-label') }}
{{ html()->text('title')->class('form-control')->placeholder('Enter Title')->required() }}
{{ html()->div('Please select title')->class('invalid-feedback') }}
{{ html()->label('Appreciation Type')->class('form-label') }}
{{ html()->select('type', \Modules\Admin\Models\Appreciation::APPRECIATION_TYPE)->class('form-select select2')->placeholder('Select Type')->required() }}
{{ html()->div('Please select type')->class('invalid-feedback') }}
{{ html()->label('Employee')->class('form-label') }}
{{ html()->select('employee_id', $employeeLists)->class('form-select select2')->placeholder('Select Employee')->required() }}
{{ html()->div('Please select appriciation')->class('invalid-feedback') }}
{{ html()->label('Appreciated By')->class('form-label') }}
{{ html()->select('appreciated_by', $employeeLists)->class('form-select select2')->placeholder('Select Who Appreciated')->required() }}
{{ html()->div('Please select appriciated by')->class('invalid-feedback') }}
{{ html()->label('Appreciated Date')->class('form-label') }}
{{ html()->date('appreciated_date')->class('form-control')->placeholder('Select Date')->required()}}
{{ html()->div('Please select appreciated date')->class('invalid-feedback') }}
{{ html()->label('Description')->class('form-label') }}
{{ html()->textarea('description')->class('form-control')->attributes(['rows' => 3]) }}
@push('js')
@endpush