@extends('layouts.app')
@section('content')
Modifier mon mot de passe
@if(Session::has('message'))
{{Session::get('message')}}
@endif
@if (Session::has('errors'))
{{ $errors->first('new_password') }}
@endif
@if (Session::has('authFailed'))
{{Session::get('authFailed')}}
@endif
@endsection