@foreach($types as $key => $value) @endforeach @if ($errors->has('type')) @endif

{{ Form::text('firstname', null, [ 'class' => 'form-control form-control-lg' . ($errors->has('firstname') ? ' is-invalid' : ''), 'placeholder' => __('First name') ]) }} @if ($errors->has('firstname'))
{{ $errors->first('firstname') }}
@endif
{{ Form::text('lastname', null, [ 'class' => 'form-control form-control-lg' . ($errors->has('lastname') ? ' is-invalid' : ''), 'placeholder' => __('Last name') ]) }} @if ($errors->has('lastname'))
{{ $errors->first('lastname') }}
@endif
@include('appshell::customer._organization')

{{ Form::hidden('is_active', 0) }} @if ($errors->has('is_active'))
{{ $errors->first('is_active') }}
@endif