{{-- 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.password.post', 'class' => 'form-horizontal']) }} @include('frontend.alerts.success') @include('frontend.alerts.warning') @include('frontend.alerts.error')
{{ Form::label('password', trans('rinvex/fort::forms.common.password'), ['class' => 'col-md-4 control-label']) }}
{{ Form::password('password', ['class' => 'form-control', 'placeholder' => trans('rinvex/fort::forms.common.password'), 'required' => 'required']) }} @if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{ Form::button(' Confirm', ['class' => 'btn btn-primary', 'type' => 'submit']) }} {{ Html::link(route('rinvex.fort.frontend.passwordreset.request'), trans('rinvex/fort::forms.common.forgot_password'), ['class' => 'btn btn-link']) }}
{{ Form::close() }}
@endsection