@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.organization.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.organization.fields.name_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.organization.fields.email_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.organization.fields.address_helper') }}
@if($errors->has('mobile'))
{{ $errors->first('mobile') }}
@endif {{ trans('cruds.organization.fields.mobile_helper') }}
@if($errors->has('logo'))
{{ $errors->first('logo') }}
@endif {{ trans('cruds.organization.fields.logo_helper') }}
@endsection @section('scripts') @endsection