Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. <form action="{{ URL::route('account-create-post') }}" method="post" >
  2. <div class="field">
  3. Email: <input type="text" name="email" {{ (Input::old('email')) ? 'value="' . e(input::old('email')) . ' " ' : ''}}>
  4. @if($errors->has('email'))
  5. {{ $errors->first('email') }}
  6. @endif
  7. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement