{{ __('messages.charge_category.new_charge_category') }}

{{ Form::open(['id'=>'addNewForm']) }}
{{ Form::label('name', __('messages.charge.charge_category').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::text('name', null, ['class' => 'form-control form-control-solid','required']) }}
{{ Form::label('description', __('messages.birth_report.description').(':'), ['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::textarea('description', null, ['class' => 'form-control form-control-solid', 'rows' => 4]) }}
{{ Form::label('charge_type', __('messages.charge_category.charge_type').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::select('charge_type', $chargeTypes, null, ['class' => 'form-select form-select-solid','required','id' => 'chargeTypeId','placeholder'=>'Select Charge Type']) }}
{{ Form::button(__('messages.common.save'), ['type'=>'submit','class' => 'btn btn-primary me-3','id'=>'btnSave','data-loading-text'=>" Processing..."]) }}
{{ Form::close() }}