@method('PUT')
@csrf
@include('stisla.includes.forms.inputs.input-name', ['value' => $user->name, 'required' => true])
@include('stisla.includes.forms.inputs.input-avatar', ['required' => false])
@include('stisla.includes.forms.inputs.input', [
'id' => 'phone_number',
'name' => 'phone_number',
'label' => __('No HP'),
'type' => 'text',
'required' => false,
'icon' => 'fas fa-phone',
])
@include('stisla.includes.forms.inputs.input', [
'id' => 'birth_date',
'name' => 'birth_date',
'label' => __('Tanggal Lahir'),
'type' => 'date',
'required' => false,
'icon' => 'fas fa-calendar',
])
@include('stisla.includes.forms.inputs.input', [
'id' => 'address',
'name' => 'address',
'label' => __('Alamat'),
'type' => 'text',
'required' => false,
'icon' => 'fas fa-map-marker-alt',
])
@include('stisla.includes.forms.buttons.btn-save')
@include('stisla.includes.forms.buttons.btn-reset')