Advertisement
Guest User

Untitled

a guest
Mar 26th, 2017
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. {!! Form::open(['route' => 'posts.store', 'files' => true]) !!}
  2.  
  3. <div class = "form-group">
  4. {!! Form::token() !!}
  5. </div>
  6.  
  7. <div class = "form-group">
  8. {!! Form::label('title','Category :') !!}
  9. {!! Form::select('category',['art_culture' => 'Art & Culture','animals_pets' => 'Animals & Pets','design_photography' => 'Design & Photography','education_books' => 'Education & Books','business_services' => 'Business & Services','cars_motorcycles' => 'Cars & Motorcycles','computers_internet' => 'Computers & Internet', 'electronics_templates' => 'Electronics Templates', 'entertainment_games_nightlife' => 'Entertainment, Games & Nightlife', 'home_family' => 'Home & Family','fashion_beauty' => 'Fashion & Beauty', 'food_restaurant' => 'Food & Restaurant','holidays_gifts_flowers' => 'Holidays, Gifts & Flowers', 'medical_templates' => 'Medical Templates','real_estate_templates' => 'Real Estate Templates','society_people' => 'Society & People','sports_outdoors_travel' => 'Sports, Outdoors & Travel'], 'art_culture') !!}
  10. </div>
  11.  
  12. <div class = "form-group">
  13. {!! Form::label('title','Logo File :') !!}
  14. {!! Form::file('logo_file') !!}
  15. </div>
  16.  
  17. <div class = "form-group">
  18. {!! Form::submit('Submit') !!}
  19. </div>
  20. {!! Form::close() !!}
  21.  
  22. <hr>
  23.  
  24. {!! Form::open(['route' => array('posts.show',$page = 'show')]) !!}
  25.  
  26. <div class = "form-group">
  27. {!! Form::token() !!}
  28. </div>
  29.  
  30. <div class = "form-group">
  31. {!! Form::label('title','Logo ID : ')!!}
  32. {!! Form::text('logo_id', null, ['class' => 'form-control']) !!}
  33. </div>
  34.  
  35. <div class = "form-group">
  36. {!! Form::submit('Show') !!}
  37. </div>
  38. {!! Form::close() !!}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement