@extends('admin/layouts/default') @section('title') Customer @parent @stop @section('content') @include('core-templates::common.errors')

{{Lang::get('customer.customer')}}

{{Lang::get('customer.new_customer')}}


{!! Form::open(['route' => 'workflow.trustee.store','id' => 'customer-form']) !!} @include('admin.customers.fields')
{!! Form::label('ownership_percentage', 'Ownership Percentage') !!} :
{!! Form::number('ownership_percentage', null, ['class' => 'form-control','required'=>'true']) !!}
{!! Form::submit(Lang::get('general.save'), ['class' => 'btn btn-primary two-btns','id' => 'save-customer']) !!} {{Lang::get('general.cancel')}}
{!! Form::close() !!}
@stop @section('footer_scripts') @stop