@extends('boilerplate::auth.layout', ['title' => __('boilerplate::auth.password.title'), 'bodyClass' => 'hold-transition login-page'])
@section('content')
@component('boilerplate::auth.loginbox')
{{ __('boilerplate::auth.password.intro') }}
@if (session('status'))
{{ session('status') }}
@else
{!! Form::open(['route' => 'boilerplate.password.email', 'method' => 'post', 'autocomplete'=> 'off']) !!}
{!! Form::close() !!}
@endif
{{ __('boilerplate::auth.password.login_link') }}
@if(config('boilerplate.auth.register'))
{{ __('boilerplate::auth.login.register') }}
@endif
@endcomponent
@endsection