@extends('admin.layout') @section('content')
{{ __('Update Profile') }}
@csrf

@if (!empty($adminInfo->image)) image @else ... @endif
{{ __('Choose Image') }}
@if ($errors->has('image'))

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

@endif

{{ __('Upload squre size image for best quality.') }}

@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
@if ($errors->has('address'))

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

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

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

@endif
@endsection