Update skinning with more flexible theme module

This commit is contained in:
Nabeel Shahzad
2018-03-11 18:00:42 -05:00
parent 03c15473b9
commit f05e37767f
50 changed files with 216 additions and 80 deletions
@@ -1,4 +1,4 @@
@extends("layouts.${SKIN_NAME}.app")
@extends('app')
@section('title', 'Edit Flight Report')
@section('content')
<div class="row">
@@ -7,10 +7,10 @@
@include('flash::message')
{!! Form::model($pirep, ['route' => ['frontend.pireps.update', $pirep->id], 'method' => 'patch']) !!}
@include("layouts.${SKIN_NAME}.pireps.fields")
@include("pireps.fields")
{!! Form::close() !!}
</div>
</div>
@endsection
@include("layouts.${SKIN_NAME}.pireps.scripts")
@include("pireps.scripts")