add publish module

This commit is contained in:
Arno Kaimbacher 2018-08-29 17:18:15 +02:00
parent 100f6db9a6
commit ffbbc04206
93 changed files with 8150 additions and 10228 deletions

View file

@ -1,27 +1,21 @@
@extends('layouts.app')
@extends('layouts.settings.layout')
@section('content')
<div class="header">
<h3 class="header-title">
Add Your Project
</h3>
</div>
<h1 class="title">Add Your Project</h1>
<div>
<a href="{{ route('settings.project') }}" class="pure-button button-small">
<i class="fa fa-chevron-left"></i>
<span>BACK</span>
</a>
</div>
<div class="col-md-4">
{!! Form::open(['route' => 'settings.project.post', 'class' => 'pure-form pure-form-stacked']) !!}
<div class="box-content">
<a href="{{ route('settings.project') }}" class="pure-button button-small">
<i class="fa fa-chevron-left"></i>
<span>BACK</span>
</a>
<div>
{!! Form::open(['route' => 'settings.project.post', 'class' => 'pure-form pure-form-aligned']) !!}
@include('settings/project/_form', ['submitButtonText' => 'Save Project', 'projectLabel' => 'Save Project.'])
{!! Form::close() !!}
</div>
</div>
@stop