@extends('main') @section('css')
@endsection @section('content')
@if (Session::get('error_msg'))
×
{{Session::get('error_msg')}}
@endif @if (Session::get('succ_msg'))
×
{{Session::get('succ_msg')}}
@endif
@if ($validation_errors && count($validation_errors) > 0)
Whoops!
There were some problems with your input.
@foreach ($validation_errors as $error)
{{ $error }}
@endforeach
@endif
Forgot Password
Send
@endsection @section('js') @endsection