@include('shared.alerts')
{{ __('Create school') }}
@csrf @include('shared.input', ['label' => __('Name'), 'name' => 'name', 'value' => old('name')]) @include('shared.input', ['label' => __('CVR'), 'name' => 'cvr', 'value' => old('cvr')]) @include('shared.input', ['label' => __('Address'), 'name' => 'address', 'value' => old('address')]) @include('shared.input', ['label' => __('Zipcode'), 'name' => 'zipcode', 'value' => old('zipcode')]) @include('shared.input', ['label' => __('City'), 'name' => 'city', 'value' => old('city')]) @include('shared.input', ['label' => __('Contact e-mail'), 'name' => 'email', 'value' => old('email'), 'type' => 'email']) @include('shared.input', ['label' => __('Phone'), 'name' => 'phone', 'value' => old('phone')]) @include('shared.input', ['label' => __('Rate'), 'name' => 'rate', 'value' => old('rate'), 'type' => 'number']) @include('shared.input', ['label' => __('Commission'), 'name' => 'commission', 'value' => old('commission'), 'type' => 'number'])