@include('web.components.inputs.input', ['label' => trans('text.first-name'), 'placeholder' => trans('text.please-specify'), 'name' => 'first_name', 'value' => $user->first_name, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.last-name'), 'placeholder' => trans('text.please-specify'), 'name' => 'last_name', 'value' => $user->last_name, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.father-name'), 'placeholder' => trans('text.please-specify'), 'name' => 'father_name', 'value' => $user->father_name, 'readonly' => true])
@include('web.components.inputs.input', ['label' => trans('text.id-number'), 'placeholder' => trans('text.please-specify'), 'name' => 'id_number', 'value' => $user->id_number, 'readonly' => true])
@include('web.components.inputs.select-single', ['label' => trans('text.marital-status'), 'placeholder' => trans('text.please-specify'), 'name' => 'marital_status', 'attribute' => 'title', 'rows' => $marital_statuses, 'value' => $user->marital_status_id])
@include('web.components.inputs.input', ['label' => trans('text.date-of-birth'), 'type' => 'date', 'placeholder' => trans('text.please-specify'), 'name' => 'date_of_birth', 'readonly' => true])
@include('web.components.inputs.select-single', ['label' => trans('text.country-of-birth'), 'placeholder' => trans('text.please-specify'), 'name' => 'country_of_birth', 'attribute' => 'name', 'rows' => $countries, 'value' => $user->country_of_birth_id])
@include('web.components.inputs.select-single', ['label' => trans('text.city-of-residence').'*', 'placeholder' => trans('text.please-specify'), 'name' => 'city_of_residence', 'attribute' => 'title', 'rows' => $regions, 'value' => $user->city_of_residence_id])
@include('web.components.inputs.input', ['label' => trans('text.street'), 'placeholder' => trans('text.please-specify'), 'name' => 'street', 'value' => $user->street])
@include('web.components.inputs.input', ['label' => trans('text.building'), 'placeholder' => trans('text.please-specify'), 'name' => 'building', 'value' => $user->building])
@include('web.components.inputs.input', ['label' => trans('text.mobile-number'), 'type' => 'number', 'placeholder' => trans('text.please-specify'), 'name' => 'mobile_number', 'value' => $user->mobile_number])
@include('web.components.inputs.input', ['label' => trans('text.phone-number'), 'type' => 'number', 'placeholder' => trans('text.please-specify'), 'name' => 'phone_number', 'value' => $user->phone_number])