@extends('layouts.auth') @section('title', 'Login | ' . Options::get('title') ) @section('content')

Login here

{{ Form::open(['url' => 'login', 'method' => 'post'])}}
{{ Form::email('email', null, ['placeholder' => 'Email', 'class' => 'form-control', 'aria-describedby' => 'email_addon']) }}
@if( $errors->any() ) {{ $errors->first('email') }} @endif
{{ Form::password('password', ['placeholder' => 'Password', 'class' => 'form-control', 'aria-describedby' => 'password_addon']) }}
@if( $errors->any() ) {{ $errors->first('password') }} @endif
{{ Form::submit('login', ['class' => 'btn btn-success']) }} {{ Form::close() }}
@endsection