@extends('layouts.master')
@section('content')
@include('layouts.navbar')
@php
$company_form = App\Models\companyFormStep::where('order', $_GET['order'])
->where('section', 'company_formation')
->first();
$buisness_ess = App\Models\companyFormStep::where('order', $_GET['order'])
->where('section', 'BusinessEssential')
->first();
$summary = App\Models\companyFormStep::where('order', $_GET['order'])
->where('section', 'Review')
->first();
@endphp
Please enter your desired company name. This is the name that will appear on your certificate of
incorporation and also appear on the public record at Companies House.
Please also include any relevant company name ending, such as LTD, LIMITED, PLC, etc
{{-- --}}
Please specify the company's jurisdiction. This can be either England & Wales, Wales, Northern Ireland or Scotland.
{{-- --}}
A ‘SIC code’ is a Standard Industrial Classification code. These are used by Companies House to classify the type of business activity (or activities) in which a company or other type of business is engaged.
How do I choose a code?
First of all select a category, then use the 'filter' box to enter a keyword which describes your business activity, e.g. plumbing. You can choose between 1-4 codes for your company. Please note, SIC codes are used simply for statistical purposes and your business’ activities are not strictly limited to the SIC codes selected.
What happens if I select the wrong code?
If you provide the wrong SIC code(s), or your main business activities change after company formation, you can provide the correct code(s) when you file your next annual confirmation statement. If you would rather change your SIC code(s) immediately, you can simply update the confirmation statement early.
A full list of SIC Codes can be found on the Government website here.
{{-- --}}
Please confirm if all members in this LLP, now and in the future, are to be designated.
You must have at least 2 ‘designated members’ at all times - they have more responsibilities, eg keeping company accounts. You can have any number of ordinary members.
{{-- --}}
@endsection
@section('script')
@endsection