@extends('packer.layouts.master') @section('title', ' Change Password') @section('content')

{{ __('Admin Profile') }}

@include('packer.partials.profile-side-bar')

{{ __('Change Password') }}

@csrf
@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