{{ Form::label('name', __('messages.account.account').(':'), ['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.account.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('type', __('messages.account.type').(':'),['class' => 'form-label fs-6 fw-bolder text-gray-700 mb-3']) }}
{{ Form::radio('type', '1', false, ['class' => 'form-check-input']) }}
{{ Form::radio('type', '2', true, ['class' => 'form-check-input']) }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit','class' => 'btn btn-primary me-2','id' => 'btnSave','data-loading-text' => " Processing..."]) }}