@extends('layouts.layout-2')
@section('content')
Reiseprogramm @if($id == "new") anlegen @else verwalten {{"(ID: ".$id.")"}} @endif
{!! Form::open(['url' => route('travel_program_detail', [$id]), 'class' => 'form-horizontal']) !!}
@include('travel.program._general')
@if($id !== "new" && $program)
@include('travel.program._details')
@include('travel.program._classes')
@include('travel.program._drafts')
@endif
{!! Form::close() !!}
@if($id !== "new" && $program)
@include('travel.program._modals')
@endif
@endsection