@extends('layouts.mainadmin') @section('title') استرجاع كلمة المرور @stop @section('content')
@if (Session::has('status'))

{{ Session::get('status') }}

@endif @if (Session::has('error'))

{{ Session::get('error') }}

@endif

استرجاع كلمة المرور

{{ Form::open(['action'=>'RemindersController@postRemind','Remind','POST']) }}
{{ Form::label('username', 'البريد الإلكترونى ',['class'=>'control-label visible-ie8 visible-ie9']) }}
{{ Form::email('email', null, ['placeholder' => 'البريد الإلكترونى ', 'class' => 'form-control placeholder-no-fix']) }}

{{ Form::submit('أسترجاع', ['class' => 'btn btn green']) }}
{{ Form::close() }}
@stop