@extends('templates.external')
@section('content')
@if(isset($title))
{{ $title }}
@endif
{!! Form::open(['route' => $form_route]) !!}
{!! Form::submit('Log In', ['class' => 'btn btn-primary', 'style' => 'flex: 1;']) !!}
{!! link_to_route('password.reset.email.get', 'Forgot your password? No worries.') !!}
{!! Form::close() !!}
@stop