@extends('layouts.app') @section('title', 'Changer mot de passe') @section('content')

Modifier mot de passe

@if (session('error'))
{{ session('error') }}
@endif @if (session('success'))
{{ session('success') }}
@endif
{{ csrf_field() }}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('new-password')) {{ $errors->first('new-password') }} @endif
@endsection