create.blade.php 198 B

1234567891011121314
  1. @extends ('layout')
  2. @section ('content')
  3. <form method='POST' action='/cntrl'>
  4. @csrf
  5. <input name='smth' />
  6. <input type='submit' />
  7. </form>
  8. @endsection
  9. @section ('title')
  10. create
  11. @endsection