@extends('layouts.form') @section('card') @component('components.card') @slot('title') @lang('Connexion') @endslot
{{ csrf_field() }} @include('partials.form-group', [ 'title' => __('Adresse email'), 'type' => 'email', 'name' => 'email', 'required' => true, ]) @include('partials.form-group', [ 'title' => __('Mot de passe'), 'type' => 'password', 'name' => 'password', 'required' => true, ])
@component('components.button') @lang('Connexion') @endcomponent @lang('Mot de passe oubliƩ ?')
@endcomponent @endsection