@extends('layouts.login') @section('title') Connexion @endsection @section('content')
@if ($errors->any())
Erreur lors de l'authentification
@endif
Connexion
{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{-- Forgot Your Password? --}}
@endsection