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

Change Password

@csrf @if(isset($city)) @method('PUT') @endif
@if ($errors->has('current_password'))
{{ $errors->first('current_password') }}
@endif @if(Session::get('error_current_password') && Session::get('error_current_password') != null)
{{ Session::get('error_current_password') }}
@php Session::put('error_current_password', null) @endphp @endif
@if ($errors->has('new_password'))
{{ $errors->first('new_password') }}
@endif @if(Session::get('error_not_match') && Session::get('error_not_match') != null)
{{ Session::get('error_not_match') }}
@php Session::put('error_not_match', null) @endphp @endif
@if ($errors->has('new_password_confirmation'))
{{ $errors->first('new_password_confirmation') }}
@endif
@section('js') @endscript @endsection