@extends('admin.layouts.master') @section('title', 'Edit Profile') @section('content')

{{ __('Admin Profile') }}

{{ __('Change Password') }}

@csrf @if ($errors->has('old_password'))

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

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

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

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

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

@endif

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

@csrf
@if ($user->icon) @endif

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

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

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

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

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

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

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

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

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

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

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

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

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

@endif
@endsection