@extends('layouts.main') @section('content') @if (Auth::check()) @include('parts.already_auth') @else
{!! Form::open(['route' => 'account.authenticate_email']) !!}
{!! Form::label('email', 'Email') !!} {!! Form::email('email', old('email'), ['class' => 'form-control', 'placeholder' => 'myemail@address.org', 'required']) !!}
{!! Form::submit('Send the authentication link', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endif @endsection