@extends('template.default') @section('content') @if (Auth::check())

Вы авторизованы!

@else @if ($errors)
@foreach ($errors as $error) {{ $error }}
@endforeach
@endif
{{ Form::open(['method' => 'post']) }} {{ Form::label('email', 'Ваш email') }}
{{ Form::email('email') }}
{{ Form::label('password', 'Ваш пароль') }}
{{ Form::password('password') }}
{{ Form::submit('ВОЙТИ') }} {{ Form::close() }}
@endif @stop