Deploy Ladill Frontdesk / deploy (push) Successful in 38s
Co-authored-by: Cursor <cursoragent@cursor.com>
53 lines
2.6 KiB
PHP
53 lines
2.6 KiB
PHP
<x-app-layout title="Add member">
|
|
<div class="mx-auto max-w-lg">
|
|
<h1 class="text-xl font-semibold text-slate-900">Invite team member</h1>
|
|
|
|
<form method="POST" x-data action="{{ route('frontdesk.members.store') }}" class="mt-6 space-y-4 rounded-2xl border border-slate-200 bg-white p-6">
|
|
@csrf
|
|
|
|
@if (! empty($mailboxOptions))
|
|
<div>
|
|
<label class="block text-sm font-medium text-slate-700">From a Ladill mailbox</label>
|
|
<select x-on:change="if ($event.target.value) { $refs.email.value = $event.target.value }"
|
|
class="mt-1 w-full rounded-lg border-slate-300 text-sm">
|
|
<option value="">Choose a mailbox…</option>
|
|
@foreach ($mailboxOptions as $address)
|
|
<option value="{{ $address }}">{{ $address }}</option>
|
|
@endforeach
|
|
</select>
|
|
<p class="mt-1 text-xs text-slate-500">Or type any email below.</p>
|
|
</div>
|
|
@endif
|
|
|
|
<div>
|
|
<label class="block text-sm font-medium text-slate-700">Email address</label>
|
|
<input type="email" name="email" x-ref="email" value="{{ old('email') }}" required
|
|
class="mt-1 w-full rounded-lg border-slate-300 text-sm"
|
|
placeholder="colleague@company.com">
|
|
<p class="mt-1 text-xs text-slate-500">They will receive an email to accept and join your Frontdesk organization.</p>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="block text-sm font-medium text-slate-700">Role</label>
|
|
<select name="role" class="mt-1 w-full rounded-lg border-slate-300 text-sm">
|
|
@foreach ($roles as $key => $label)
|
|
<option value="{{ $key }}" @selected(old('role') === $key)>{{ $label }}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
|
|
<div>
|
|
<label class="block text-sm font-medium text-slate-700">Branch (optional)</label>
|
|
<select name="branch_id" class="mt-1 w-full rounded-lg border-slate-300 text-sm">
|
|
<option value="">All branches</option>
|
|
@foreach ($branches as $branch)
|
|
<option value="{{ $branch->id }}" @selected(old('branch_id') == $branch->id)>{{ $branch->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
</div>
|
|
|
|
<button type="submit" class="btn-primary">Send invitation</button>
|
|
</form>
|
|
</div>
|
|
</x-app-layout>
|