my changes
This commit is contained in:
parent
28301e4312
commit
8dc1f1b048
263 changed files with 36882 additions and 4453 deletions
47
resources/views/settings/person/_form.blade.php
Normal file
47
resources/views/settings/person/_form.blade.php
Normal file
|
@ -0,0 +1,47 @@
|
|||
<fieldset>
|
||||
<div class="pure-control-group">
|
||||
{!! Form::label('academic_title', 'Title..') !!}
|
||||
{!! Form::text('academic_title', null, ['class' => 'form-control']) !!}
|
||||
<aside id="titleHelp" class="pure-form-message-inline">title is optional.</aside>
|
||||
</div>
|
||||
|
||||
<div class="pure-control-group">
|
||||
{!! Form::label('last_name', 'Name..') !!}
|
||||
{!! Form::text('last_name', null, ['class' => 'form-control']) !!}
|
||||
<em>*</em>
|
||||
</div>
|
||||
|
||||
<div class="pure-control-group" ">
|
||||
{!! Form::label('first_name', 'First Name..') !!}
|
||||
{!! Form::text('first_name', null, ['class' => 'form-control']) !!}
|
||||
<aside id="firstNameHelp" class="pure-form-message-inline">first name is optional.</aside>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="pure-control-group">
|
||||
{!! Form::label('email', 'Email..') !!}
|
||||
{!! Form::text('email', null, ['class' => 'form-control']) !!}
|
||||
<small id="emailHelp" class="pure-form-message-inline">email is optional.</small>
|
||||
</div>
|
||||
|
||||
<div class="pure-control-group">
|
||||
{!! Form::label('identifier_orcid', 'ORCID..') !!}
|
||||
{!! Form::text('identifier_orcid', null, ['class' => 'form-control']) !!}
|
||||
<small id="orcidHelp" class="pure-form-message-inline">orcid is optional.</small>
|
||||
</div>
|
||||
|
||||
<h5><b>Status of person</b></h5>
|
||||
<div class="pure-control-group checkboxlist">
|
||||
<label for="status" class="pure-checkbox">
|
||||
<input type="hidden" name="status" value="0">
|
||||
<input name="status" value="1" {{ (isset($person) && $person->status == 1) ? 'checked="checked" ' : '' }} type="checkbox" class="form-check-input">
|
||||
Active?
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<!-- <div class="pure-controls">-->
|
||||
{!! Form::submit($submitButtonText, ['class' => 'pure-button button-small']) !!}
|
||||
<!-- </div>-->
|
||||
</fieldset>
|
||||
|
||||
@include('errors._errors')
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue