@extends('auth.master') @section('content')
{{ Form::open(['route' => 'password.emaill', 'method'=>'POST']) }} {{ csrf_field() }}
{{ Form::text('email', null, ['required' => "required", 'placeholder' => 'Correo Electronico', 'class'=>'form-control']) }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{form::submit('Recuperar', array('class'=> 'btn btn-primary btn-md btn-block'))}}
{{ Form::close() }}

Iniciar Sesión

@endsection