@extends('layouts.admin-dashboard') @section('content') {{ Form::open(array('class'=>'form addFormWrap','id'=>'partyForm', 'route' => array('case.party.store', $case->id), 'method' => 'post')) }}
Party Type | Name | Attorney |
---|
{{ Form::label('partyType', 'Party Type') }}
{{ Form::checkbox('partyCategory', 'Person', true) }} Person {{ Form::checkbox('partyCategory', 'Business') }} Business
{{ Form::label('partyAttorney', 'Filing Attorney') }}
{{ Form::label('firstName', 'First Name') }} {{ Form::text('firstName', Input::old('firstName'),array('class'=>'inputStyle')) }} @if($errors->has('firstName'))
{{$errors->first('firstName')}}
@endif{{ Form::label('middleName', 'Middle Name') }} {{ Form::text('middleName', Input::old('middleName'),array('class'=>'inputStyle')) }}
{{ Form::label('lastName', 'Last Name') }} {{ Form::text('lastName', Input::old('lastName'),array('class'=>'inputStyle')) }} @if($errors->has('lastName'))
{{ $errors->first('lastName')}}
@endif{{ Form::label('country', 'Country') }}
{{ Form::label('streetAddressLine1', 'Address line 1') }} {{ Form::text('streetAddressLine1', Input::old('streetAddressLine1'),array('class'=>'inputStyle')) }} @if($errors->has('streetAddressLine1'))
{{$errors->first('streetAddressLine1')}}
@endif{{ Form::label('city', 'City') }} {{ Form::text('city', Input::old('city'),'',array('class'=>'inputStyle')) }} @if($errors->has('city'))
{{$errors->first('city')}}
@endif{{ Form::label('stateCode', 'State') }} @if($errors->has('stateCode'))
{{$errors->first('stateCode')}}
@endif{{ Form::label('zipCode', 'Zip Code') }} {{ Form::text('zipCode', Input::old('zipCode'),array('class'=>'inputStyle')) }} @if($errors->has('zipCode'))
{{$errors->first('zipCode')}}
@endif{{ Form::label('phoneNumber', 'Phone') }} {{ Form::text('phoneNumber', Input::old('phoneNumber'),array('class'=>'inputStyle')) }} @if($errors->has('phoneNumber'))
{{$errors->first('phoneNumber')}}
@endif