25 lines
531 B
PHP
25 lines
531 B
PHP
@extends("layouts.${SKIN_NAME}.app")
|
|
@section('title', 'file pirep')
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<h2 class="description">new pilot report</h2>
|
|
@include('flash::message')
|
|
{!! Form::open(['route' => 'frontend.pireps.store']) !!}
|
|
|
|
@include("layouts.${SKIN_NAME}.pireps.fields")
|
|
|
|
{!! Form::close() !!}
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|
|
@section('scripts')
|
|
<script>
|
|
$(document).ready(function() {
|
|
|
|
});
|
|
</script>
|
|
@endsection
|