@extends('layouts.user_dashboard_main') @section('content')

Change Password

@if (session('error'))
{{ session('error') }}
@endif @if (session('success'))
{{ session('success') }}
@endif
Your new password must be different from previous used passwords.
{{ csrf_field() }}
@if ($errors->has('current-password')) {{ $errors->first('current-password') }} @endif
{{--
Must be at least 8 characters.
--}} @if ($errors->has('new-password')) {{ $errors->first('new-password') }} @endif
@if ($errors->has('new-password_confirmation')) {{ $errors->first('new-password_confirmation') }} @endif
@endsection