tethys/resources/views/settings/person/add.blade.php

26 lines
670 B
PHP
Raw Normal View History

2018-08-31 14:47:04 +00:00
@extends('settings.layouts.app')
2018-08-06 12:30:51 +00:00
@section('content')
2018-08-29 15:18:15 +00:00
<div class="header">
<h3 class="header-title">
Add Your Person
</h3>
</div>
<div class="box-content">
<div>
<a href="{{ route('settings.person') }}" class="pure-button button-small">
2018-08-06 12:30:51 +00:00
<i class="fa fa-chevron-left"></i>
<span>BACK</span>
</a>
2018-08-29 15:18:15 +00:00
</div>
2018-08-06 12:30:51 +00:00
2018-08-29 15:18:15 +00:00
<div>
{!! Form::open(['route' => 'settings.person.post', 'class' => 'pure-form pure-form-aligned']) !!}
2018-08-06 12:30:51 +00:00
@include('settings/person/_form', ['submitButtonText' => 'Add Person', 'projectLabel' => 'Save Person.'])
{!! Form::close() !!}
</div>
2018-08-29 15:18:15 +00:00
</div>
2018-08-06 12:30:51 +00:00
@stop