Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <div class="modal fade" id="addNew" tabindex="-1" role="dialog">
  2. <div class="modal-dialog" role="document">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <h5 class="modal-title">New User</h5>
  6. <button type="button" class="close" data-dismiss="modal" aria-label="Close">
  7. <span aria-hidden="true">&times;</span>
  8. </button>
  9. </div>
  10. <div class="modal-body">
  11. {!! Form::open(['method' =>'POST', 'action'=> 'UsersController@store', 'files'=>true, 'enctype'=>'multipart/form-data']) !!}
  12. <div class="form-group {{$errors->has('firstName') ? 'has-error' : ''}}">
  13. {!! Form::label('firstName', 'First Name:') !!}
  14. {!! Form::text('firstName', null, ['class'=>'form-control', 'rows' => 3])!!}
  15. @if($errors->has('firstName'))
  16. {{$errors->first('firstName')}}
  17. @endif
  18. </div>
  19. {{--most form data removed for simplicity--}}
  20. <div class="form-group">
  21. {!! Form::submit('Add user', ['class'=>'btn btn-primary']) !!}
  22. </div>
  23. {!! Form::close() !!}
  24. </div>
  25. </div>
  26. </div>
  27. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement