@extends('front/layout') @section('page_title','Change PAssword') @section('container')

Change Password

@if (session('error'))
{{ session('error') }}
@endif @if (session('success'))
{{ session('success') }}
@endif @if($errors) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif
@csrf
@if ($errors->has('current-password')) {{ $errors->first('current-password') }} @endif
@if ($errors->has('new-password')) {{ $errors->first('new-password') }} @endif
@endsection