@extends('layouts.admin') @section('content')
Change Password
{{ csrf_field() }}
Old Password
@if ($errors->has('OldPassword'))
{{ $errors->first('OldPassword') }}
@endif
New Password
@if ($errors->has('NewPassword'))
{{ $errors->first('NewPassword') }}
@endif
Confirm Password
@if ($errors->has('NewPassword_confirmation'))
{{ $errors->first('NewPassword_confirmation') }}
@endif
Save
@endsection