\#21 PIREP scaffolding

This commit is contained in:
Nabeel Shahzad
2017-06-28 19:54:05 -05:00
parent 43effce37c
commit 477b99de29
25 changed files with 1061 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<!-- Name Field -->
<div class="form-group col-sm-6">
{!! Form::label('name', 'Name:') !!}
{!! Form::text('name', null, ['class' => 'form-control']) !!}
</div>
<!-- Required Field -->
<div class="form-group col-sm-6">
{!! Form::label('required', 'Required:') !!}
{!! Form::text('required', null, ['class' => 'form-control']) !!}
</div>
<!-- Submit Field -->
<div class="form-group col-sm-12">
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!}
<a href="{!! route('admin.pirepfields.index') !!}" class="btn btn-default">Cancel</a>
</div>