@extends ("layouts.app") @section('title') {{ $user->name }} - {{ __('Edit') }} - {{ __('Profile') }} @endsection @section('content')
{{ __('Profile') }} {{ __('Edit') }}
{{ html()->modelForm($user, 'PATCH', route('profile.changePasswordUpdate'))->class('form-horizontal')->acceptsFiles()->open() }}
{{ html()->label(__('labels.users.fields.password'), 'password')->class('form-label') }} {!! field_required('required') !!} {{ html()->password('password')->placeholder(__('labels.users.fields.password'))->class('form-control')->attributes(['required']) }}
{{ html()->label(__('labels.users.fields.password_confirmation'), 'password_confirmation')->class('form-label') }} {!! field_required('required') !!} {{ html()->password('password_confirmation')->placeholder(__('labels.users.fields.password_confirmation'))->class('form-control')->attributes(['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