{{strtoupper(trans('app.attributes'))}}
{{trans('app.mandatory_sign')}}
{{ Form::label("user_first_name", ucfirst(trans('app.firstname')), ["class"=>"frvc fwy form-label"]) }}
{{ Form::text("user_first_name", null,["class"=>"form-control m-field-input", 'required', 'tabindex'=>'1']) }}
{{trans('app.mandatory_sign')}}
{{ Form::label("user_login", ucfirst(trans('app.login')), ["class"=>"frvc fwy form-label"]) }}
{{ Form::text("user_login", null, ["class"=>"form-control m-field-input", 'required', 'readonly', 'tabindex'=>'3']) }}
{{trans('app.mandatory_sign')}}
@if(auth()->user()->role_id==config('constants.role_admin_id')||auth()->user()->role_id==config('constants.role_ceo_id')) {!! Form::label("user_department_id", ucfirst(trans('app.department')), ["class"=>"frvc fwy form-label"]) !!} @else {!! Form::label("user_department_id", ucfirst(trans('app.department')), ["class"=>"frvc fwy form-label opa-5"]) !!} @endif
@if(auth()->user()->role_id==config('constants.role_admin_id')||auth()->user()->role_id==config('constants.role_ceo_id')) {!! Form::select("user_department_id", $departments, auth()->user()->department_id,["id"=>"user_department_id", "class"=>"form-control m-field-input", 'required', 'tabindex'=>'5']) !!} @else {!! Form::select("user_department_id", $departments, auth()->user()->department_id,["id"=>"user_department_id", "class"=>"form-control m-field-input", 'required', 'tabindex'=>'5', 'readonly']) !!} @endif
{{trans('app.mandatory_sign')}}
{{ Form::label("user_trigram", ucfirst(trans('app.trigram')), ["class"=>"frvc fwy form-label"]) }}
{{ Form::text("user_trigram", null, ["class"=>"form-control m-field-input", 'required', 'tabindex'=>'7']) }}
{{trans('app.mandatory_sign')}}
{{ Form::label("user_email", ucfirst(trans('app.email')), ["class"=>"frvc fwy form-label"]) }}
{{ Form::email("user_email", null, ["class"=>"form-control m-field-input", 'required', 'tabindex'=>'9'])}}
{{trans('app.mandatory_sign')}}
{{ Form::label("user_last_name", ucfirst(trans('app.lastname')), ["class"=>"frvc fwy form-label"]) }}
{{ Form::text("user_last_name", null,["class"=>"form-control m-field-input", 'required', 'tabindex'=>'2']) }}
{{trans('app.mandatory_sign')}}
{{ Form::label("user_password", ucfirst(trans('app.password')), ["class"=>"frvc fwy form-label"]) }}
{{ Form::password("user_password", ["class"=>"form-control m-field-input", 'required', 'readonly', 'tabindex'=>'4']) }}
{{trans('app.mandatory_sign')}}
{!! Form::label("user_service_id", ucfirst(trans('app.service')), ["class"=>"frvc fwy form-label"]) !!}
{!! Form::select("user_service_id", $services, auth()->user()->service_id, ["class"=>"form-control m-field-input", 'tabindex'=>'6']) !!}
{{trans('app.mandatory_sign')}}
{{ Form::label("user_role_id", ucfirst(trans('app.role')), ["class"=>"frvc fwy form-label"]) }}
{{ Form::select("user_role_id", $roles, 5, ["class"=>"form-control m-field-input", 'required', 'tabindex'=>'8']) }}
{{ Form::label("user_title", ucfirst(trans('app.title')), ["class"=>"frvc fwy form-label"]) }}
{{ Form::text("user_title", null, ["class"=>"form-control m-field-input", 'tabindex'=>'10']) }}
@if(session()->get('budget_option') == 1)
{{strtoupper(trans('app.budget'))}}
@endif