@extends('admin.layout') @section('content')
{{__('Update Password')}}
{{csrf_field()}}
@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