@extends('layouts.main') @section('content') @include('partials.breadcrumb', ['breadcrumbTitle' => 'Change Password'])
@include('settings.partials.side-nav')
@if (session('status'))
{{ session('status') }}
@endif
{{ csrf_field() }}
@if ($errors->has('current-password')) {{ $errors->first('current-password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@stop @section('after_scripts') @include('partials.password-strength') @stop