@section('content')
{{ Form::open(['route' => 'admin.password.reset.submit', 'class' => 'login100-form validate-form']) }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ Form::email('email', null, ['class' => 'input100 nospace']) }}
{{ Form::password('password', ['class' => 'input100 nospace']) }}
{{ Form::password('password_confirmation', ['class' => 'input100 nospace']) }}
{{ Form::close() }}
@stop {{-- @section('content') {{ Form::open(array('route' => array('admin.password.reset.submit'))) }} {{ csrf_field() }} {{ Form::hidden('token', $token) }}
{{ Form::email('email', null, array('class' => 'form-control', 'placeholder' => 'E-mail', 'required')) }} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{ Form::password('password', array('class' => 'form-control', 'placeholder' => 'Nova palavra-passe', 'required')) }} @if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{ Form::password('password_confirmation', array('class' => 'form-control', 'placeholder' => 'Confirmar palavra-passe', 'required')) }} @if ($errors->has('password')) {{ $errors->first('password_confirmation') }} @endif

Iniciar Sessão
{{ Form::close() }} @endsection--}}