@extends('admin.master') @section('title', 'Change Password') @section('contents')

Change Password

@csrf
@if(Session::has('msg-error'))
{{ Session::get('msg-error') }}
@endif
@error('current_password') {{ $message }} @enderror
@error('password') {{ $message }} @enderror

User Details

Name {{ Auth::user()->name }}
Email {{ Auth::user()->email }}
@endsection @section('script_links') @endsection