akaunting/resources/views/auth/forgot/create.blade.php

29 lines
1.1 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
@extends('layouts.auth')
@section('title', trans('auth.reset_password'))
@section('message', trans('auth.reset_password'))
@section('content')
2019-11-16 10:21:14 +03:00
<form role="form" method="POST" action="{{ url('auth/forgot') }}">
{{ csrf_field() }}
2017-09-14 22:21:00 +03:00
2019-11-16 10:21:14 +03:00
@stack('email_input_start')
<div class="form-group has-feedback{{ $errors->has('email') ? ' has-error' : '' }}">
<div class="input-group input-group-merge input-group-alternative">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-envelope"></i></span>
</div>
<input class="form-control" placeholder="{{ trans('general.email') }}" name="email" type="email">
</div>
@if ($errors->has('email'))
<span class="help-block">
<strong>{{ $errors->first('email') }}</strong>
</span>
@endif
</div>
@stack('email_input_end')
2018-08-07 17:35:45 +03:00
2019-11-16 10:21:14 +03:00
<button type="submit" class="btn btn-success float-right">{{ trans('general.send') }}</button>
</form>
2017-09-14 22:21:00 +03:00
@endsection