@extends('master')
@section('title')
New Company
@stop
@section('styles')
@stop
@section('content')
@include('partials.dashboard-menu')
Add a new company
{{ Form::open(['files' => true]) }}
{{ Form::text('companyName') }}
{{ Form::text('registrationNumber') }}
{{ Form::text('VATNumber') }}
{{ Form::text('contact_person') }}
{{ Form::email('email') }}
{{ Form::text('telephone') }}
{{ Form::text('FD_person') }}
{{ Form::email('FD_email') }}
{{ Form::text('FD_telephone') }}
{{ Form::text('FM_contact_person') }}
{{ Form::email('FM_email') }}
{{ Form::text('FM_telephone') }}
{{ Form::close() }}
@include('partials.footer')
@stop
@section('scripts')
@stop