2016-09-29 16:56:57 +02:00
|
|
|
@extends('base')
|
|
|
|
|
2019-04-07 12:34:40 +02:00
|
|
|
{{--TODO - Check design of this view--}}
|
|
|
|
|
2016-09-29 16:56:57 +02:00
|
|
|
@section('content')
|
|
|
|
|
2018-05-28 11:33:38 +02:00
|
|
|
<div class="container small">
|
2016-12-03 19:35:40 +01:00
|
|
|
<h1>{{ trans('entities.pages_new') }}</h1>
|
2018-03-25 12:34:42 +02:00
|
|
|
<form action="{{ $parent->getUrl('/create-guest-page') }}" method="POST">
|
2016-09-29 16:56:57 +02:00
|
|
|
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
|
|
|
|
<div class="form-group title-input">
|
2016-12-03 19:35:40 +01:00
|
|
|
<label for="name">{{ trans('entities.pages_name') }}</label>
|
2016-09-29 16:56:57 +02:00
|
|
|
@include('form/text', ['name' => 'name'])
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
2019-04-07 12:34:40 +02:00
|
|
|
<a href="{{ $parent->getUrl() }}" class="button outline">{{ trans('common.cancel') }}</a>
|
|
|
|
<button type="submit" class="button primary">{{ trans('common.continue') }}</button>
|
2016-09-29 16:56:57 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
@stop
|