@extends('adminlte::page') @section('css') @endsection @section('title', 'Reef | Comapny') @section('content')
@if(Session::has('error'))

{{ Session::get('error') }}

@endif

Create Company

@if(Session::has('message'))

{{ Session::get('message') }}

@endif @livewire('dashboard.companies.company-form', ['company' => $company])
@stop