{!! Form::label('text', 'First name*') !!} {!! Form::text('billing_first_name', old('billing_first_name'), ['placeholder' => 'First name']) !!} @error('billing_first_name'){{ $message }}@enderror
{!! Form::label('text', 'Last name*') !!} {!! Form::text('billing_last_name', old('billing_last_name'), ['placeholder' => 'Last name']) !!} @error('billing_last_name'){{ $message }}@enderror
{!! Form::label('text', 'State*') !!} {!! Form::text('billing_state', old('billing_state'), ['placeholder' => 'State']) !!} @error('billing_state'){{ $message }}@enderror
{!! Form::label('text', 'City*') !!} {!! Form::text('billing_city', old('billing_city'), ['placeholder' => 'City']) !!} @error('billing_city'){{ $message }}@enderror
{!! Form::label('text', 'Address*') !!} {!! Form::text('billing_address', old('billing_address'), ['placeholder' => 'Address']) !!} @error('billing_address'){{ $message }}@enderror
{!! Form::label('text', 'Phone*') !!} {!! Form::text('billing_phone', old('billing_phone'), ['placeholder' => 'Phone']) !!} @error('billing_phone'){{ $message }}@enderror
{!! Form::label('text', 'Order Notes') !!} {!! Form::textarea('shipping_notes', old('shipping_notes'), ['placeholder' => 'Notes about your order, e.g. special notes for delivery.', 'id' => 'checkout-mess']) !!} @error('shipping_notes'){{ $message }}@enderror