@extends('admin.layout.base') @section('title', 'Change Password') @section('content')

Change Password 🔒

Keep your account secure by updating your password regularly.

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection