2018-03-12 07:00:42 +08:00
|
|
|
@extends('app')
|
2018-05-19 03:45:52 +08:00
|
|
|
@section('title', __('pireps.editflightreport'))
|
2018-02-25 05:38:25 +08:00
|
|
|
@section('content')
|
2020-02-02 02:05:56 +08:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-12">
|
|
|
|
<h2>@lang('pireps.editflightreport')</h2>
|
|
|
|
@include('flash::message')
|
|
|
|
{{ Form::model($pirep, [
|
|
|
|
'route' => ['frontend.pireps.update', $pirep->id],
|
|
|
|
'class' => 'form-group',
|
|
|
|
'method' => 'patch']) }}
|
2018-02-25 05:38:25 +08:00
|
|
|
|
2020-02-02 02:05:56 +08:00
|
|
|
@include('pireps.fields')
|
2018-02-25 05:38:25 +08:00
|
|
|
|
2020-02-02 02:05:56 +08:00
|
|
|
{{ Form::close() }}
|
2018-02-25 05:38:25 +08:00
|
|
|
</div>
|
2020-02-02 02:05:56 +08:00
|
|
|
</div>
|
2018-02-25 05:38:25 +08:00
|
|
|
@endsection
|
2018-04-10 11:04:59 +08:00
|
|
|
@include('pireps.scripts')
|