{{ __('messages.diagnosis_category.edit_diagnosis_category') }}

{{ Form::open(['id'=>'editForm', 'method' => 'patch']) }}
{{ Form::hidden('diagnosisCategoryId',null,['id'=>'diagnosisCategoryId']) }}
{{ Form::label('name', __('messages.diagnosis_category.diagnosis_category').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::text('name', '', ['id'=>'editName','class' => 'form-control form-control-solid','required']) }}
{{ Form::label('description', __('messages.diagnosis_category.description').(':'),['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::textarea('description', '', ['class' => 'form-control form-control-solid', 'rows' => 5, 'id' => 'editDescription']) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit','class' => 'btn btn-primary me-3','id' => 'btnEditSave','data-loading-text' => " Processing..."]) }}
{{ Form::close() }}