15 lines
506 B
PHP
15 lines
506 B
PHP
<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>
|
|
{{ Form::submit($submitButtonText, ['class' => 'pure-button button-small']) }}
|
|
</fieldset>
|
|
|
|
@include('errors._errors') |