@extends('../../master_layout/website_master') @section('title') {{env('APP_NAME')}} :: My Account @endsection @section('heading')
Back

Change Password

@php $breadcrumb = array( array('title'=>'My Account', 'url'=>route('account')), array('title'=>'Change Password', 'url'=>'', 'active'=>'1') ); @endphp @include('website_view.component.breadcrumb', compact("breadcrumb"))
@endsection @section('content') @if (session('errors'))
@foreach($errors->all() as $message)
  • {{$message}}
  • @endforeach
    @endif
    @if (session('message'))
    @endif

    Change Password

    @include('website_view.component.account-navigation')
    @csrf
    @endsection @section('custom_js') @endsection