@extends('layouts.public') @section('content')
Vocab Builder App Registration
@method('POST') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('tribal_affiliation'))
{{ $errors->first('tribal_affiliation') }}
@endif
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if($errors->has('carrier'))
{{ $errors->first('carrier') }}
@endif
@if($errors->has('more_info'))
{{ $errors->first('more_info') }}
@endif
@endsection @section('scripts') @endsection