@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::submit('أسترجاع', ['class' => 'btn btn green']) }}
{{ Form::close() }}
@stop