@extends('themes.default1.layouts.login')
@section('body')
@if(Session::has('status'))
       {!! Lang::get('lang.success') !!} 
    
    {{Session::get('status')}}
@endif
@if(Session::has('errors'))
       {!! Lang::get('lang.alert') !!}! 
    
    {!!  $errors !!}
@endif
{!! Lang::get('lang.enter_email_to_reset_password') !!}
@stop