JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr@extends('layouts.admin') @php // $profile = asset(Storage::url('uploads/avatar/')); $profile=\App\Models\Utility::get_file('uploads/avatar/'); @endphp @push('script-page') @endpush @section('page-title') {{ __('Profile') }} @endsection @section('title')
{{ __('Profile') }}
@endsection @section('breadcrumb') @endsection @section('action-btn') @endsection @section('content')
{{ __('Personal Information') }}
{{ __('Details about your personal information') }}
{{ Form::model($userDetail, ['route' => ['update.account'], 'method' => 'post', 'enctype' => 'multipart/form-data']) }} @csrf
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
{{ Form::label('profile', __('Avatar'), ['class' => 'col-form-label']) }}
{{ __('Please upload a valid image file. Size of image should not be more than 2MB.') }} @error('profile') {{ $message }} @enderror
{{ __('Change Password') }}
{{ __('Details about your account password change') }}
{{ Form::model($userDetail, ['route' => ['update.password', $userDetail->id], 'method' => 'post']) }}
{{ Form::label('current_password', __('Current Password'), ['class' => 'col-form-label text-dark']) }} {{ Form::password('current_password', ['class' => 'form-control', 'placeholder' => __('Enter Current Password')]) }} @error('current_password') {{ $message }} @enderror
{{ Form::label('new_password', __('New Password'), ['class' => 'col-form-label text-dark']) }} {{ Form::password('new_password', ['class' => 'form-control', 'placeholder' => __('Enter New Password')]) }} @error('new_password') {{ $message }} @enderror
{{ Form::label('confirm_password', __('Re-type New Password'), ['class' => 'col-form-label text-dark']) }} {{ Form::password('confirm_password', ['class' => 'form-control', 'placeholder' => __('Enter Re-type New Password')]) }} @error('confirm_password') {{ $message }} @enderror
{{ Form::close() }}
@endsection