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

Change Password

@if(Session::has('success'))
{{Session::get('success')}}
@endif @if(Session::has('error'))
{{Session::get('error')}}
@endif

Update Password

@csrf
@error('old_password')

{{$message}}

@enderror
@error('new_password')

{{$message}}

@enderror
@error('password_confirmation')

{{$message}}

@enderror
@endsection