tethys/resources/views/settings/project/_form.blade.php

20 lines
726 B
PHP
Raw Normal View History

2018-08-06 12:30:51 +00:00
<fieldset>
<div class="pure-control-group">
{{ Form::label('name', 'project name') }}
{{ Form::text('name', null, ['class' => 'form-control']) }}
<em>*</em>
</div>
<div class="pure-control-group">
{{ Form::label('label', 'project label') }}
{{ Form::text('label', null, ['class' => 'form-control']) }}
<em>*</em>
</div>
2018-10-04 14:41:29 +00:00
<div class="pure-control-group">
{{ Form::label('description', 'description') }}
{{ Form::textarea('description', null, ['class' => 'form-control', 'size' => '70x6']) }}
<em>*</em>
</div>
2018-08-29 15:18:15 +00:00
{{ Form::submit($submitButtonText, ['class' => 'pure-button button-small']) }}
2018-08-06 12:30:51 +00:00
</fieldset>
@include('errors._errors')