Blame view

resources/views/auth/forgot/create.blade.php 1.02 KB
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  @extends('layouts.auth')
  
  @section('title', trans('auth.reset_password'))
  @section('message', trans('auth.reset_password'))
  
  @section('content')
  <form role="form" method="POST" action="{{ url('auth/forgot') }}">
      {{ csrf_field() }}
  
      @stack('email_input_start')
  
      <div class="form-group has-feedback{{ $errors->has('email') ? ' has-error' : '' }}">
          <input name="email" type="email" class="form-control" placeholder="{{ trans('auth.enter_email') }}" required>
          <span class="glyphicon glyphicon-envelope form-control-feedback"></span>
          @if ($errors->has('email'))
              <span class="help-block">
                  <strong>{{ $errors->first('email') }}</strong>
              </span>
          @endif
      </div>
  
      @stack('email_input_end')
  
      <div class="row">
          <!-- /.col -->
          <div class="col-sm-offset-8 col-sm-4">
              <button type="submit" class="btn btn-success btn-block btn-flat">{{ trans('general.send') }}</button>
          </div>
          <!-- /.col -->
      </div>
  </form>
  @endsection