@include('shared.alerts')
{{ __('Create teacher') }}
@csrf
@include('shared.input', ['label' => __('Name'), 'name' => 'name', 'value' => old('name')]) @include('shared.input', ['label' => __('E-mail'), 'name' => 'email', 'value' => old('email'), 'type' => 'email']) @include('shared.input', ['label' => __('Password'), 'name' => 'password', 'value' => old('password'), 'type' => 'password']) @include('shared.input', ['label' => __('Password confirmation'), 'name' => 'password_confirmation', 'value' => old('password_confirmation'), 'type' => 'password']) @include('shared.input', ['label' => __('CPR'), 'name' => 'cpr', 'value' => old('cpr')]) @include('shared.input', ['label' => __('Address'), 'name' => 'address', 'value' => old('address')]) @include('shared.input', ['label' => __('Address 2'), 'name' => 'address2', 'value' => old('address2')]) @include('shared.input', ['label' => __('Zipcode'), 'name' => 'zipcode', 'value' => old('zipcode')]) @include('shared.input', ['label' => __('City'), 'name' => 'city', 'value' => old('city')]) @include('shared.input', ['label' => __('Country'), 'name' => 'country', 'value' => old('country')]) @include('shared.input', ['label' => __('Mobile'), 'name' => 'mobile', 'value' => old('mobile')]) @include('shared.input', ['label' => __('Description'), 'name' => 'description', 'value' => old('description'), 'type' => 'textarea']) @include('shared.input', ['label' => __('Primary pickup location'), 'name' => 'pickup_primary', 'value' => old('pickup_primary')]) @include('shared.input', ['label' => __('Secondary pickup location'), 'name' => 'pickup_secondary', 'value' => old('pickup_secondary')])