@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.user.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.user.fields.name_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.user.fields.email_helper') }}
@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif {{ trans('cruds.user.fields.phone_number_helper') }}
@if($errors->has('password'))
{{ $errors->first('password') }}
@endif {{ trans('cruds.user.fields.password_helper') }}
{{ trans('global.select_all') }} {{ trans('global.deselect_all') }}
@if($errors->has('roles'))
{{ $errors->first('roles') }}
@endif {{ trans('cruds.user.fields.roles_helper') }}
@foreach(App\Models\User::IS_VERIFIED_RADIO as $key => $label)
is_verified) === (string) $key ? 'checked' : '' }} required>
@endforeach @if($errors->has('is_verified'))
{{ $errors->first('is_verified') }}
@endif {{ trans('cruds.user.fields.is_verified_helper') }}
@if($errors->has('profile_picture'))
{{ $errors->first('profile_picture') }}
@endif {{ trans('cruds.user.fields.profile_picture_helper') }}
@if($errors->has('curriculum_vitae'))
{{ $errors->first('curriculum_vitae') }}
@endif {{ trans('cruds.user.fields.curriculum_vitae_helper') }}
@if($errors->has('files'))
{{ $errors->first('files') }}
@endif {{ trans('cruds.user.fields.files_helper') }}
@if($errors->has('tribe'))
{{ $errors->first('tribe') }}
@endif {{ trans('cruds.user.fields.tribe_helper') }}
@if($errors->has('motto'))
{{ $errors->first('motto') }}
@endif {{ trans('cruds.user.fields.motto_helper') }}
@if($errors->has('facebook'))
{{ $errors->first('facebook') }}
@endif {{ trans('cruds.user.fields.facebook_helper') }}
@if($errors->has('instagram'))
{{ $errors->first('instagram') }}
@endif {{ trans('cruds.user.fields.instagram_helper') }}
@if($errors->has('twitter'))
{{ $errors->first('twitter') }}
@endif {{ trans('cruds.user.fields.twitter_helper') }}
@if($errors->has('personal_website'))
{{ $errors->first('personal_website') }}
@endif {{ trans('cruds.user.fields.personal_website_helper') }}
@if($errors->has('nickname'))
{{ $errors->first('nickname') }}
@endif {{ trans('cruds.user.fields.nickname_helper') }}
@if($errors->has('birthplace'))
{{ $errors->first('birthplace') }}
@endif {{ trans('cruds.user.fields.birthplace_helper') }}
@if($errors->has('birthdate'))
{{ $errors->first('birthdate') }}
@endif {{ trans('cruds.user.fields.birthdate_helper') }}
@if($errors->has('skin_color'))
{{ $errors->first('skin_color') }}
@endif {{ trans('cruds.user.fields.skin_color_helper') }}
@if($errors->has('weight'))
{{ $errors->first('weight') }}
@endif {{ trans('cruds.user.fields.weight_helper') }}
@if($errors->has('height'))
{{ $errors->first('height') }}
@endif {{ trans('cruds.user.fields.height_helper') }}
@foreach(App\Models\User::MARRIAGE_STATUS_RADIO as $key => $label)
marriage_status) === (string) $key ? 'checked' : '' }}>
@endforeach @if($errors->has('marriage_status'))
{{ $errors->first('marriage_status') }}
@endif {{ trans('cruds.user.fields.marriage_status_helper') }}
@if($errors->has('marriage_date'))
{{ $errors->first('marriage_date') }}
@endif {{ trans('cruds.user.fields.marriage_date_helper') }}
@if($errors->has('number_of_siblings'))
{{ $errors->first('number_of_siblings') }}
@endif {{ trans('cruds.user.fields.number_of_siblings_helper') }}
@if($errors->has('order_in_siblings'))
{{ $errors->first('order_in_siblings') }}
@endif {{ trans('cruds.user.fields.order_in_siblings_helper') }}
@if($errors->has('income'))
{{ $errors->first('income') }}
@endif {{ trans('cruds.user.fields.income_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.user.fields.address_helper') }}
@if($errors->has('origin_address'))
{{ $errors->first('origin_address') }}
@endif {{ trans('cruds.user.fields.origin_address_helper') }}
@if($errors->has('father_name'))
{{ $errors->first('father_name') }}
@endif {{ trans('cruds.user.fields.father_name_helper') }}
@if($errors->has('cover_picture'))
{{ $errors->first('cover_picture') }}
@endif {{ trans('cruds.user.fields.cover_picture_helper') }}
@endsection @section('scripts') @endsection