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

{{ __('Admin Profile') }}

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

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

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

@else @if ($errors->first('oldPassMatch')) {{"Old password doesn't match with the existing password!"}} @endif @endif
@if ($errors->has('password'))

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

@endif
@endsection