@extends('vendor.site-bases.website.layouts.master')
@section('title', trans('title.change_password'))
@section('page_title', trans('title.change_password'))
@section('breadcrumbs')
{!! Breadcrumbs::render('change_password') !!}
@endsection
@section('content')
@include('partials.profile-sidebar')
@if (count($errors) > 0)
@foreach ($errors->getMessages() as $messages)
@foreach ($messages as $text)
- {{ $text }}
@endforeach
@endforeach
@endif
@if (session('success'))
{{ session('success') }}
@endif
@endsection