@extends('layouts.admin.app') @section('title') Create Customer @stop @section('main')
{!! Form::open(['method'=>'POST','action' => 'AdminCustomersController@store']) !!}
{!! Form::label('customer_id', 'Customer ID') !!} {!! Form::text('customer_id', $customer_id, ['class'=>'form-control', 'placeholder'=>'Customer ID']) !!} @if ($errors->has('customer_id')) {{ $errors->first('customer_id') }} @endif
{!! Form::label('customer', 'Customer Name') !!} {!! Form::text('customer', null, ['class'=>'form-control', 'placeholder' =>'Customer Name']) !!} @if ($errors->has('customer')) {{ $errors->first('customer') }} @endif
{!! Form::label('first_name', 'First Name') !!} {!! Form::text('first_name', null, ['class'=>'form-control', 'placeholder' =>'First Name']) !!} @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
{!! Form::label('last_name', 'Last Name') !!} {!! Form::text('last_name', null, ['class'=>'form-control', 'placeholder' =>'Last Name']) !!} @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif
{!! Form::label('company', 'Company') !!} {!! Form::text('company', null, ['class'=>'form-control', 'placeholder' =>'Company']) !!} @if ($errors->has('company')) {{ $errors->first('company') }} @endif
{!! Form::label('corporate_name', 'Corporate Name') !!} {!! Form::text('corporate_name', null, ['class'=>'form-control', 'placeholder' =>'Corporate Name']) !!} @if ($errors->has('corporate_name')) {{ $errors->first('corporate_name') }} @endif
{!! Form::label('ship_address', 'Ship Address') !!} {!! Form::text('ship_address', null, ['class'=>'form-control', 'placeholder' =>'Ship Address']) !!} @if ($errors->has('ship_address')) {{ $errors->first('ship_address') }} @endif
{!! Form::label('ship_city', 'Ship City') !!} {!! Form::text('ship_city', null, ['class'=>'form-control', 'placeholder' =>'City']) !!} @if ($errors->has('ship_city')) {{ $errors->first('ship_city') }} @endif
{!! Form::label('ship_state', 'Ship State') !!} {!! Form::select('ship_state', $states, null,['class'=>'form-control', 'placeholder'=>'Select Ship State']) !!} @if ($errors->has('ship_state')) {{ $errors->first('ship_state') }} @endif
{!! Form::label('ship_zip', 'Ship Zip Code') !!} {!! Form::text('ship_zip', null, ['class'=>'form-control', 'placeholder' =>'Zip Code']) !!} @if ($errors->has('ship_zip')) {{ $errors->first('ship_zip') }} @endif
{!! Form::label('bill_address', 'Bill Address') !!} {!! Form::text('bill_address', null, ['class'=>'form-control', 'placeholder' =>'Bill Address']) !!} @if ($errors->has('bill_address')) {{ $errors->first('bill_address') }} @endif
{!! Form::label('bill_city', 'Bill City') !!} {!! Form::text('bill_city',null, ['class'=>'form-control', 'placeholder' =>'Bill City']) !!} @if ($errors->has('bill_city')) {{ $errors->first('bill_city') }} @endif
{!! Form::label('bill_state', 'Bill State') !!} {!! Form::select('bill_state', $states, null,['class'=>'form-control', 'placeholder'=>'Select Bill State']) !!} @if ($errors->has('bill_state')) {{ $errors->first('bill_state') }} @endif
{!! Form::label('bill_zip', 'Bill Zip Code') !!} {!! Form::text('bill_zip', null, ['class'=>'form-control', 'placeholder' =>'Zip Code']) !!} @if ($errors->has('bill_zip')) {{ $errors->first('bill_zip') }} @endif
{!! Form::label('email', 'Email') !!} {!! Form::email('email', null, ['class'=>'form-control', 'placeholder' =>'Email']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::label('phone', 'Phone Number') !!} {!! Form::text('phone', null, ['class'=>'form-control', 'placeholder' =>'Phone Number']) !!} @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
{!! Form::label('rep_id', 'Rep') !!} {!! Form::select('rep_id', $rep, null,['class'=>'form-control', 'placeholder'=>'Select Sales Rep']) !!} @if ($errors->has('rep_id')) {{ $errors->first('rep_id') }} @endif
{!! Form::label('terms', 'Terms') !!} {!! Form::select('terms', ['Credit Card'=>'Credit Card','Invoice'=>'Invoice'], null,['class'=>'form-control', 'placeholder'=>'Select Terms']) !!} @if ($errors->has('terms')) {{ $errors->first('terms') }} @endif
{!! Form::label('new_account', 'New Account?') !!} {!! Form::select('new_account', ['0'=>'No','1'=>'Yes'], 0,['class'=>'form-control']) !!} @if ($errors->has('new_account')) {{ $errors->first('new_account') }} @endif
{!! Form::submit('Create Customer Profile', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@stop @section('footer') @stop