@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
{{ csrf_field() }}
@if ($errors->has('current_password')) {{ $errors->first('current_password') }} @endif
@endsection