@extends('layouts.auth') @section('template_title') {{ trans('auth.loginPageTitle') }} @endsection @section('content')

Catalog

{!! Form::open(['url' => 'login', 'method' => 'POST', 'class' => '', 'id' => 'login', 'role' => 'form']) !!} {{ csrf_field() }}
{!! Form::email('email', null, array('id' => 'email', 'class' => 'mdl-textfield__input', 'placeholder' => 'Your Email Address')) !!} @if ($errors->has('email')) {{ trans('auth.emailLoginError') }} @endif
{!! Form::password('password', array('id' => 'userpass', 'class' => 'mdl-textfield__input', 'placeholder' => 'Password')) !!} @if ($errors->has('password')) {{ trans('auth.pwLoginError') }} @endif
{!! Form::button(''.trans('auth.login').'
', array('class' => 'mdl-button mdl-js-button mdl-js-ripple-effect center mdl-color--primary mdl-color-text--white mdl-button--raised full-span margin-bottom-1 margin-top-2','type' => 'submit','id' => 'submit')) !!} {!! Form::close() !!}
@endsection