@extends ("layouts.app") @section('title') {{ $user->name }} - {{ __('Edit') }} - {{ __('Profile') }} @endsection @section('content')
{{ __('Profile') }} {{ __('Edit') }}
{{ html()->modelForm($user, 'PATCH', route('profile.update'))->class('form-horizontal')->acceptsFiles()->open() }}
{{ html()->label(__('labels.users.fields.avatar'))->class('col-md-2 form-label')->for('name') }}
{{ html()->label(__('labels.users.fields.name'), 'name')->class('form-label') }} {!! field_required('required') !!} {{ html()->text('name')->placeholder(__('labels.users.fields.name'))->class('form-control')->attributes(["required"]) }}
{{ html()->label(__('labels.users.fields.email'), 'email')->class('form-label') }} {!! field_required('required') !!} {{ html()->email('email')->placeholder(__('labels.users.fields.email'))->class('form-control')->attributes(["required"]) }}
{{ html()->label(__('labels.users.fields.password'), 'password')->class('form-label') }} {!! field_required('required') !!}
@if ($user->status != 2 && $user->id != 1) @endif @if ($user->status == 2) @lang('Unblock') @endif @if ($user->email_verified_at == null) @endif @if ($user->id != 1) @lang('Delete') @endif @lang('Cancel')
{{ html()->closeModelForm() }}
@endsection