@extends('clumsy::templates.master') @section('title') @lang('clumsy::titles.login') @stop @section('master') {{ Form::open(['url' => ($_REQUEST['lang'] ?? 'portugal') . '/admin/login']) }} {{ Form::hidden('intended', $intended ? $intended : route("$admin_prefix.home")) }} {{ Form::field('email', trans('clumsy::fields.email'), 'email', array('field' => array('tabindex' => '1'))) }}
{{ trans('clumsy::fields.reset-password') }} {{ Form::label('password', trans('clumsy::fields.password')) }} {{ Form::password('password', array('class' => 'form-control', 'tabindex' => '2')) }}
{{ Form::boolean('remember', trans('clumsy::fields.remember'), array('field' => array('tabindex' => '3'))) }} {{ Form::close() }} @stop