@extends('layouts.admin') @section('title') Change Password @endsection @section('content')
Change Password
@csrf
@if ($errors->has('old_password')) {{ $errors->first('old_password') }} @endif

@if ($errors->has('password')) {{ $errors->first('password') }} @endif

@if ($errors->has('confirm_password')) {{ $errors->first('confirm_password') }} @endif

@endsection