@extends('app') @section('content')
{{Lang::get('lang.recoverpass')}}
@if (session('status'))
{{ session('status') }}
@endif @if (count($errors) > 0)
{{Lang::get('lang.woops')}} {{Lang::get('lang.theirisproblem')}}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection