auditionadmin/resources/views/schools/create.blade.php

24 lines
994 B
PHP

<x-layout.app>
<x-slot:page_title>Create School</x-slot:page_title>
<div class="space-y-10 divide-y divide-gray-900/10">
<x-layout.page-section
section_name="School Information"
section_description=""
:first="true">
<x-auth.form-card
submit-button-text="Create School"
method="POST"
action="/schools"
>
<x-auth.form-field name="name" label="School Name" div_classes="sm:col-span-6"/>
<x-auth.form-field name="address" label="School Address" div_classes="sm:col-span-6"/>
<x-auth.form-field name="city" label="City" div_classes="sm:col-span-3"/>
<x-auth.form-field name="state" label="State" div_classes="sm:col-span-2"/>
<x-auth.form-field name="zip" label="Zip" div_classes="sm:col-span-1"/>
</x-auth.form-card>
</x-layout.page-section>
</div>
</x-layout.app>