@extends('layout.clean') @section('content')
{{ Form::open() }}
{{ trans('dashboard.login.two-factor') }} @if(Session::has('error'))

{{ Session::get('error') }}

@endif
{{ Form::text('code', null, [ 'class' => 'form-control', 'placeholder' => trans('forms.login.2fauth'), 'required' => 'required' ]) }}

{{ Form::close() }}
@stop