Initial commit
This commit is contained in:
16
views/password/reset.blade.php
Normal file
16
views/password/reset.blade.php
Normal file
@ -0,0 +1,16 @@
|
||||
@extends('layout.master')
|
||||
|
||||
@section('title')
|
||||
Password Reset -
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<form method="POST" action="">
|
||||
<input type="hidden" name="_token" value="{{ $_SESSION['_token'] }}">
|
||||
<div class="form-group">
|
||||
<label for="email">Email</label>
|
||||
<input type="email" name="email" class="form-control" placeholder="Enter email">
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary">Send</button>
|
||||
</form>
|
||||
@endsection
|
Reference in New Issue
Block a user