@extends('layouts.frontend') @section('content')
assignment
{{ trans('global.create') }} {{ trans('cruds.organization.title_singular') }}
@method('POST') @csrf
@if($errors->has('title'))
{{ $errors->first('title') }}
@endif {{ trans('cruds.organization.fields.title_helper') }}
@if($errors->has('jd_org_number'))
{{ $errors->first('jd_org_number') }}
@endif {{ trans('cruds.organization.fields.jd_org_number_helper') }}
@if($errors->has('logo'))
{{ $errors->first('logo') }}
@endif {{ trans('cruds.organization.fields.logo_helper') }}


@if($errors->has('is_active'))
{{ $errors->first('is_active') }}
@endif {{ trans('cruds.organization.fields.is_active_helper') }}

@if($errors->has('organization_type'))
{{ $errors->first('organization_type') }}
@endif {{ trans('cruds.organization.fields.organization_type_helper') }}
@endsection @section('scripts') @endsection