{{ trans('messages.basic_information') }}
@include('helpers.form_control', ['type' => 'text', 'name' => 'first_name', 'value' => $admin->first_name, 'rules' => $admin->rules()])
@include('helpers.form_control', ['type' => 'text', 'name' => 'last_name', 'value' => $admin->last_name, 'rules' => $admin->rules()])
@include('helpers.form_control', ['type' => 'select', 'name' => 'timezone', 'value' => $admin->timezone, 'options' => Tool::getTimezoneSelectOptions(), 'include_blank' => trans('messages.choose'), 'rules' => $admin->rules()])
@include('helpers.form_control', ['type' => 'select', 'name' => 'language_id', 'label' => trans('messages.language'), 'value' => $admin->language_id, 'options' => Acelle\Model\Language::getSelectOptions(), 'include_blank' => trans('messages.choose'), 'rules' => $admin->rules()])
@if (!$admin->hasCustomerAccount())
@include('helpers.form_control', [
'type' => 'checkbox',
'name' => 'create_customer_account',
'label' => trans('messages.create_customer_account'),
'value' => 'no',
'options' => ['no', 'yes'],
'help_class' => 'admin',
'rules' => $admin->rules()
])
@endif