@extends('layouts.'.((Session::get('user')->CurrentRole === 'Firm Admin')?'admin':'filer').'-dashboard') @section('content') {{ Form::open(array('class'=>'form addFormWrap','id'=>'filingForm', 'route' => array('case.filing.store', $case->id), 'method' => 'post')) }}
{{ Form::label('filingCode', 'Filing Code') }}
{{ Form::label('caseRefNumber', 'Reference Number') }} {{ Form::text('caseRefNumber', Input::old('caseRefNumber'),array('class'=>'inputStyle')) }} @if($errors->has('caseRefNumber'))
{{$errors->first('caseRefNumber')}}
@endif{{ Form::label('documentDrop', 'Documents') }} {{ Form::file('file', Input::old('file'),array('class'=>'inputStyle')) }} @if($errors->has('documentDrop'))
{{$errors->first('documentDrop')}}
@endif{{ Form::label('filingComments', 'Filing Comments') }} {{ Form::text('filingComments', Input::old('filingComments'),array('class'=>'inputStyle')) }} @if($errors->has('filingComments'))
{{ $errors->first('filingComments')}}
@endif