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

Se connecter

@csrf

{{ __('Email') }}

@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif

{{ __('Password') }}

@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif

{{ __('Remember me') }}

@endsection