@extends('layouts.app') @section('content')

Connexion à la plateforme

@if ($errors->has('email') || $errors->has('password'))
{{ $errors->first('email') }}
@endif @if(Session::has('warning'))
{{ Session::get('warning') }}
@endif
{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection