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

{{ Form::open(['id'=>'addNewForm']) }}
{{ Form::label('name', __('messages.diagnosis_category.diagnosis_category').(':'), ['class' => 'form-label required fs-6 fw-bolder text-gray-700 mb-3']) }} {{ Form::text('name', null, ['id'=>'name','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' => 'description']) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit','class' => 'btn btn-primary me-3','id' => 'btnSave','data-loading-text' => " Processing..."]) }}
{{ Form::close() }}