{{-- Master Layout --}} @extends('frontend.common.layout') {{-- Page Title --}} @section('title') {{ config('app.name') }} ยป Websudo @stop {{-- Main Content --}} @section('content')
Websudo
{{ Form::open(['route' => 'rinvex.fort.websudo.twofactor.post', 'class' => 'form-horizontal']) }} @include('frontend.alerts.success') @include('frontend.alerts.warning') @include('frontend.alerts.error')
{{ Form::label('token', trans('rinvex/fort::forms.common.authentication_code'), ['class' => 'col-md-4 control-label']) }}
{{ Form::text('token', old('token'), ['class' => 'form-control', 'placeholder' => trans('rinvex/fort::forms.common.authentication_code'), 'required' => 'required', 'autofocus' => 'autofocus']) }} @if ($errors->has('token')) {{ $errors->first('token') }} @endif
{{ Form::button(' Confirm', ['class' => 'btn btn-primary', 'type' => 'submit']) }}
{{ Form::close() }}
@endsection