{{ Form::text('st_Id', $staffu->st_Id, ['class' => 'form-control', 'readonly' => 'true']) }}
@include('elements.form.text', [
'label' => '氏名',
'name' => 'st_Staffname',
'value' => $staffu->st_Staffname,
])
@include('elements.form.text', [
'label' => 'フリガナ',
'name' => 'st_Staffkana',
'value' => $staffu->st_Staffkana,
])
@include('elements.form.text', [
'label' => 'ビジネスネーム',
'name' => 'st_businessname',
'value' => $staffu->st_businessname,
])
@include('elements.form.text', [
'label' => 'ビジネスネームカナ',
'name' => 'st_businesskana',
'value' => $staffu->st_businesskana,
])
@include('elements.form.date', [
'label' => '生年月日',
'name' => 'st_Birthday',
'value' => $staffu->st_Birthday,
])
@include('elements.form.radio', [
'label' => '性別',
'name' => 'st_Sex',
'options' => $staffu::OPTIONS_SEX,
'value' => $staffu->st_Sex
])
@include('elements.form.text', [
'label' => '郵便番号',
'name' => 'st_Yubin',
'value' => $staffu->st_Yubin,
])
@include('elements.form.select', [
'label' => '都道府県',
'options' => $staffu::PREFS,
'name' => 'st_Staffcity',
'value' => $staffu->st_Staffcity,
])
@include('elements.form.text', [
'label' => '市区町村および区',
'name' => 'st_Staffaddress',
'value' => $staffu->st_Staffaddress,
])
@include('elements.form.text', [
'label' => '住所',
'name' => 'st_Staffaddress2',
'value' => $staffu->st_Staffaddress2,
])
@include('elements.form.text', [
'label' => 'マンション/アパートなど',
'name' => 'st_Staffaddress3',
'value' => $staffu->st_Staffaddress3,
])
@include('elements.form.text', [
'label' => '最寄り駅',
'name' => 'st_Koutuu',
'value' => $staffu->st_Koutuu,
])
@include('elements.form.text', [
'label' => '携帯TEL',
'name' => 'st_Handyp',
'value' => $staffu->st_Handyp,
])
@include('elements.form.text', [
'label' => '自宅TEL',
'name' => 'st_Zitaku',
'value' => $staffu->st_Zitaku,
])
{{ Form::text('st_Mailad', $staffu->st_Mailad, ['class' => 'form-control', 'readonly' => 'true']) }}
@include('elements.form.text', [
'label' => '携帯メール',
'name' => 'st_Handypmail',
'value' => $staffu->st_Handypmail,
])
@include('elements.form.select', [
'label' => '配偶者',
'options' => $staffu::EXISTENCE,
'name' => 'st_Haigu',
'value' => $staffu->st_Haigu,
])
@include('elements.form.select', [
'label' => '同居家族',
'options' => $staffu::EXISTENCE,
'name' => 'st_Doukyo',
'value' => $staffu->st_Doukyo,
])
@include('elements.form.select', [
'label' => '現況',
'options' => $staffu::WORKING_STATE,
'name' => 'st_Genkyou',
'value' => $staffu->st_Genkyou,
])
@include('elements.form.select', [
'label' => '国籍',
'options' => $staffu::COUNTRY,
'name' => 'st_Country',
'value' => $staffu->st_Country,
])
@include('elements.form.text', [
'label' => '在留資格',
'name' => 'st_StatusResidence',
'value' => $staffu->st_StatusResidence,
])
@include('elements.form.select', [
'label' => '携帯メールサービス設定',
'options' => $staffu::MAIL_RECEIVE,
'name' => 'st_ZzbHandypMailService',
'value' => $staffu->st_ZzbHandypMailService,
])
@include('elements.form.select', [
'label' => 'メールサービス設定',
'options' => $staffu::MAIL_RECEIVE,
'name' => 'st_MailService',
'value' => $staffu->st_MailService,
])
@include('elements.form.select', [
'label' => 'アプローチメール設定',
'options' => $staffu::MAIL_RECEIVE,
'name' => 'st_Approach',
'value' => $staffu->st_Approach,
])
@include('elements.form.textarea', [
'label' => '学歴',
'name' => 'tcd_staffu_history.sh_education',
'value' => $staffu->br2nl($staffu->staffu_history->sh_education ?? ''),
'size' => '30x5',
])