{{ __('messages.common.edit') }} {{ __('messages.operation.operation') }}

{{ Form::open(['id' => 'editOperationForm']) }}
{{ Form::label('operation_category_id', __('messages.operation_category.operation_category') . ':', ['class' => 'form-label']) }} {{ Form::select('operation_category_id', $operation_categories, null, ['class' => 'form-select', 'id' => 'editOperationCategoryId', 'placeholder' => __('messages.medicine.select_category')]) }} {{ Form::hidden('operation_id', '', ['id' => 'editOperationID']) }}
{{ Form::label('name', __('messages.user.name') . ':', ['class' => 'form-label']) }} {{ Form::text('name', null, ['class' => 'form-control', 'id' => 'editOperationName','placeholder' => __('messages.user.name')]) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit', 'class' => 'btn btn-primary m-0', 'id' => 'operationSave', 'data-loading-text' => " Processing..."]) }}
{{ Form::close() }}