2018-02-04 08:18:09 +08:00
|
|
|
@extends("layouts.${SKIN_NAME}.app")
|
2017-12-20 10:19:36 +08:00
|
|
|
@section('title', 'file pirep')
|
2018-02-04 08:18:09 +08:00
|
|
|
|
2017-08-17 07:18:47 +08:00
|
|
|
@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']) !!}
|
|
|
|
|
2018-02-04 08:18:09 +08:00
|
|
|
@include("layouts.${SKIN_NAME}.pireps.fields")
|
2017-08-17 07:18:47 +08:00
|
|
|
|
|
|
|
{!! Form::close() !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
2018-02-04 08:18:09 +08:00
|
|
|
|
2017-08-17 07:18:47 +08:00
|
|
|
@section('scripts')
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endsection
|