@extends('admin.layout.master') @section('title', 'My Profile') @section('content')
@csrf

Profile Image

profile_image)}}) @endif ">
@if ($errors->has('profile_image'))

{{ $errors->first('profile_image') }}

@endif
Set the profile image. Only *.png, *.jpg and *.jpeg image files are accepted

My Profile

@if ($errors->has('first_name'))
{{ $errors->first('first_name') }} @endif
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }} @endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }} @endif
@if ($errors->has('address'))
{{ $errors->first('address') }} @endif
Back
@csrf

Change Password

@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('new_password')) {{ $errors->first('new_password') }} @endif
@if ($errors->has('confirm_new_password')) {{ $errors->first('confirm_new_password') }} @endif
Back
@endsection @push('js') @endpush