@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.business.title_singular') }}
@method('POST') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.business.fields.name_helper') }}
@if($errors->has('type'))
{{ $errors->first('type') }}
@endif {{ trans('cruds.business.fields.type_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.business.fields.address_helper') }}
@if($errors->has('year_start'))
{{ $errors->first('year_start') }}
@endif {{ trans('cruds.business.fields.year_start_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.business.fields.status_helper') }}
@if($errors->has('capital'))
{{ $errors->first('capital') }}
@endif {{ trans('cruds.business.fields.capital_helper') }}
@if($errors->has('capital_owner'))
{{ $errors->first('capital_owner') }}
@endif {{ trans('cruds.business.fields.capital_owner_helper') }}
@if($errors->has('sector'))
{{ $errors->first('sector') }}
@endif {{ trans('cruds.business.fields.sector_helper') }}
@endsection