@extends('layouts.app') @section('title', 'Connexion') @section('content')

Connexion


@if (session('status'))
{{ session('status') }}
@endif @if (session('warning'))
{{ session('warning') }}
@endif
{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif Mot de passe oublié ?
Créer un compte
@if (session('message')) {{ session('message') }} @endif
@endsection