@extends('layouts.master') @section('styles') @endsection @section('title') @lang('Add company') @endsection @section('breadcrumbs') @component('components.breadcrumb', [ 'items' => [ ['url' => '#', 'label' => 'Admin'], ['url' => route('companies.index'), 'label' => 'Companies'], ], 'title' => 'Add company' ])@endcomponent @endsection @section('content')

@lang('Create company')

@csrf @component('components.form.input', [ 'name' => 'name', 'label' => __('Company name')])@endcomponent @component('components.form.input', [ 'name' => 'address', 'label' => __('Company address')])@endcomponent
@endsection @section('scripts') @endsection