@extends('admin.layout') @section('pagename') - {{__('Edit Profile')}} @endsection @section('content')
Update Profile
@if (!empty(Auth::guard('admin')->user()->image)) ... @else ... @endif
0%
Browse Files
Select a file or drag it over this area..

Upload squre size image for best quality.

Only jpg, jpeg, png image is allowed.

{{csrf_field()}}
@if ($errors->has('username'))

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

@endif
@if ($errors->has('email'))

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

@endif
@if ($errors->has('first_name'))

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

@endif
@if ($errors->has('last_name'))

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

@endif
@endsection