@extends('backend.layout.app') @section('title','Change Password') @push('css') @endpush @section('main_menu','HOME') @section('active_menu','Change Password') @section('link',route('admin.adminDashboard')) @section('content')
{{ csrf_field() }}
@if ($errors->has('current-password')) {{ $errors->first('current-password') }} @endif
@if ($errors->has('new-password')) {{ $errors->first('new-password') }} @endif
@endsection @push('js') @endpush