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

Account/Change Password

Change Password
@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
{{ csrf_field() }} @php $admin_user = auth()->user(); @endphp
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if ($errors->has('new_password')) {{ $errors->first('new_password') }} @endif
@if ($errors->has('confirm_password')) {{ $errors->first('confirm_password') }} @endif
Cancel
@endsection @section('scripts') @include('admin.account_settings.scripts.index') @endsection