-
@lang("global.basic_information")
@lang('global.save')
@component('dashboard.components.edit_text' , [
"name" => "first_name",
"type" => "text",
"title" => __("global.first_name"),
'col' => 'mb-30 col-12 required',
'value' => $user->first_name
])
@endcomponent
@component('dashboard.components.edit_text' , [
"name" => "last_name",
"type" => "text",
"title" => __("global.last_name"),
'col' => 'mb-30 col-12 required',
'value' => $user->last_name
])
@endcomponent
@component('dashboard.components.edit_text' , [
"name" => "date_of_birth",
"type" => "date",
"title" => __("global.date_of_birth"),
'col' => 'mb-30 col-12',
'value' => $user->userinformationOne->date_of_birth ? $user->userinformationOne->date_of_birth : '',
'title' => $user->userinformationOne->date_of_birth ? $user->userinformationOne->date_of_birth : ''
])
@endcomponent
@component('dashboard.components.edit_text' , [
"name" => "passport_number",
"type" => "text",
"title" => __("global.passport_number"),
'col' => 'mb-30 col-12',
'value' => $user->userinformationOne->passport_number
])
@endcomponent