@extends('admin.layouts.app') @section('content')
Users
Dashboard
Invite User
Invite User
@include('admin.includes.status')
{{ csrf_field() }} @if($admin_role != 'agency-admin')
Select Agencies
*
Select Agency
@foreach($agencies as $agency)
id) }} value="{{ $agency->id }}">{{ $agency->agency_name }}
@endforeach
@if ($errors->has('agency_id')){{ $errors->first('agency_id') }}@endif
@endif
First Name
*
@if ($errors->has('first_name')){{ $errors->first('first_name') }}@endif
Last Name
*
@if ($errors->has('last_name')){{ $errors->first('last_name') }}@endif
Email
*
@if ($errors->has('email')){{ $errors->first('email') }}@endif
Send Invitation
@endsection