2016-09-29 10:56:57 -04:00
|
|
|
@extends('base')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
2018-05-28 05:33:38 -04:00
|
|
|
<div class="container small">
|
2016-12-03 13:35:40 -05:00
|
|
|
<h1>{{ trans('entities.pages_new') }}</h1>
|
2018-03-25 06:34:42 -04:00
|
|
|
<form action="{{ $parent->getUrl('/create-guest-page') }}" method="POST">
|
2016-09-29 10:56:57 -04:00
|
|
|
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
|
|
|
|
<div class="form-group title-input">
|
2016-12-03 13:35:40 -05:00
|
|
|
<label for="name">{{ trans('entities.pages_name') }}</label>
|
2016-09-29 10:56:57 -04:00
|
|
|
@include('form/text', ['name' => 'name'])
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
2016-12-03 13:35:40 -05:00
|
|
|
<a href="{{ $parent->getUrl() }}" class="button muted">{{ trans('common.cancel') }}</a>
|
|
|
|
<button type="submit" class="button pos">{{ trans('common.continue') }}</button>
|
2016-09-29 10:56:57 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
@stop
|