You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<section class="module-container">
|
|
|
|
<header>
|
|
|
|
<div class="section-title">Add application</div>
|
|
|
|
<div class="module-actions">
|
|
|
|
<a href="{{ route('items.index') }}" class="button"><i class="fa fa-ban"></i><span>Cancel</span></a>
|
|
|
|
<button type="submit"class="button"><i class="fa fa-save"></i><span>Save</span></button>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div class="create">
|
|
|
|
{!! csrf_field() !!}
|
|
|
|
<div class="input">
|
|
|
|
<label>Application name</label>
|
|
|
|
{!! Form::text('title', null, array('placeholder' => 'Title','class' => 'form-control')) !!}
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<label>Colour</label>
|
|
|
|
{!! Form::text('colour', null, array('placeholder' => 'Hex Colour','class' => 'form-control color-picker')) !!}
|
|
|
|
</div>
|
|
|
|
<div class="input">
|
|
|
|
<label>URL</label>
|
|
|
|
{!! Form::text('url', null, array('placeholder' => 'Url','class' => 'form-control')) !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|