@extends('layouts.admin') @section('title', trans('general.title.new', ['type' => trans_choice('general.companies', 1)])) @section('content')
{!! Form::open([ 'id' => 'company', 'route' => 'companies.store', '@submit.prevent' => 'onSubmit', '@keydown' => 'form.errors.clear($event.target.name)', 'files' => true, 'role' => 'form', 'class' => 'form-loading-button', 'novalidate' => true ]) !!}
{{ Form::textGroup('name', trans('general.name'), 'building') }} {{ Form::emailGroup('email', trans('general.email'), 'envelope') }} {{ Form::selectGroup('currency', trans_choice('general.currencies', 1), 'exchange-alt', $currencies) }} {{ Form::textGroup('domain', trans('companies.domain'), 'globe', []) }} {{ Form::textareaGroup('address', trans('general.address')) }} {{ Form::fileGroup('logo', trans('companies.logo')) }} {{ Form::radioGroup('enabled', trans('general.enabled')) }}
{!! Form::close() !!}
@endsection @push('scripts_start') @endpush