@extends('admin.layouts.app') @section('title', 'Change Password') @section('breadcrumb') / Profile / Change Password @endsection @section('content')
Change Your Password
@if($errors->any())
{{ $errors->first() }}
@endif
@csrf @method('PUT')
@error('current_password')
{{ $message }}
@enderror
@error('new_password')
{{ $message }}
@enderror
@endsection