@extends('website.layouts.master') @section('head') {{ $title ?? get_platform_title() }} @stop @section('content') @if (session('status'))
{{ session('status') }}
@endif
@if (count($errors) > 0)
{{ trans('theme.error') }}! {{ trans('messages.input_error') }}

@endif

{{ trans('theme.password_reset') }}

{!! Form::open(['url' => 'customer/password/reset', 'id' => 'form', 'data-toggle' => 'validator']) !!} {!! Form::hidden('token', $token) !!}
{!! Form::email('email', null, ['class' => 'form-control input-lg', 'placeholder' => trans('theme.placeholder.valid_email'), 'required']) !!}
{!! Form::password('password', ['class' => 'form-control input-lg', 'id' => 'password', 'placeholder' => trans('theme.placeholder.password'), 'data-minlength' => '6', 'required']) !!}
{!! Form::password('password_confirmation', ['class' => 'form-control input-lg', 'placeholder' => trans('theme.placeholder.confirm_password'), 'data-match' => '#password', 'required']) !!}
{!! Form::submit(trans('theme.password_reset'), ['class' => 'btn btn-block btn-lg btn-flat btn-primary']) !!} {!! Form::close() !!} {{ trans('theme.button.login') }}
@if (config('services.recaptcha.key')) @include('theme::scripts.recaptcha') @endif @endsection @section('script')
busy...
@stop