@extends('layouts.admin') @php $profile=asset(Storage::url('uploads/avatar/')); @endphp @section('page-title') {{__('Profile Account')}} @endsection @push('script-page') @endpush @section('breadcrumb') @endsection @section('content')
{{('Personal Info')}}
{{Form::model($userDetail,array('route' => array('update.account'), 'method' => 'post', 'enctype' => "multipart/form-data"))}} @csrf
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
{{ __('Please upload a valid image file. Size of image should not be more than 2MB.')}} @error('avatar') {{ $message }} @enderror
{{('Change Password')}}
@csrf
@error('old_password') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@endsection