@extends('layouts.front_layout') @section('content') @section('title', 'Change Password')
@include('user.sidebar')

Welcome, {{Auth::user()->email}}

Change Password
@if (session('msg')) @endif
@csrf
@error('current_password') {{$message}} @enderror
@error('password') {{$message}} @enderror
@error('password_confirmation') {{$message}} @enderror
@stop