@extends('layouts.app', ['activePage' => 'CompanyCategory', 'titlePage' => __('Settings')]) @section('content')
@csrf @method('post')

{{ __('Add Document') }}

{!! Form::select('company_id', $company, null,['class' => 'form-control', 'placeholder' => 'Select Company', 'required']) !!} @if ($errors->has('company_id')) {{ $errors->first('company_id') }} @endif
{!! Form::select('document_type_id', $documentType, null,['class' => 'form-control', 'placeholder' => 'Select Document Type', 'required']) !!} @if ($errors->has('document_type_id')) {{ $errors->first('document_type_id') }} @endif
@if ($errors->has('document')) {{ $errors->first('description') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@endsection