@extends('master')
@section('title')
New Company
@stop
@section('styles')
@stop
@section('content')
@include('partials.dashboard-menu')
Edit {{$company->companyName}} company profile info
{{ Form::model($company, array('route' => ['management.edit-company', $company->id], '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