Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. @extends('layout')
  2.  
  3. @section('content')
  4.  
  5. {!! Form::open(['route' => 'pages.store']) !!}
  6.  
  7. @if ($errors->any())
  8. @foreach ($errors->all() as $error)
  9. <div class="btn btn-danger">{{ $error }}</div>
  10. @endforeach
  11. @endif
  12.  
  13. <div class="form-group">
  14. {!! Form::label('title', "Title:") !!}
  15. {!! Form::text('title', null, ['class'=>'form-control']) !!}
  16. </div>
  17.  
  18. <div class="form-group">
  19. {!! Form::label('content', "Treść:") !!}
  20. {!! Form::textarea('content', null, ['class'=>'form-control']) !!}
  21. </div>
  22.  
  23. <div class="form-group">
  24. {!! Form::submit('Zapisz', ['class'=>'btn btn-primary']) !!}
  25. {!! link_to(URL::previous(), 'Powrót', ['class' => 'btn btn-default']) !!}
  26. </div>
  27.  
  28. {!! Form::close() !!}
  29.  
  30. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement