@extends('admin.layout') @section('content')

{{ __('Admin Profile') }}

{{ __('Update Admin Profile') }}

@csrf

{{ __('Upload 70X70 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

@if ($errors->has('name'))

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

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

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

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

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

@endif
@endsection