Skip to content

Commit

Permalink
changed heading to bold paragraph
Browse files Browse the repository at this point in the history
  • Loading branch information
dcblogdev committed May 29, 2024
1 parent e4838a3 commit 6ce3cf7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions resources/views/livewire/admin/users/invite.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
<button class="btn btn-primary" @click="on = true">{{ __('Invite User') }}</button>
</x-slot>

<x-slot name="title">{{ __('Invite User') }}</x-slot>
<x-slot name="modalTitle">{{ __('Invite User') }}</x-slot>

<x-slot name="content">

@include('errors.success')

<x-form.input tabindex="1" wire:model.live="name" :label="__('Name')" name="name" required />
<x-form.input tabindex="3" wire:model.live="email" :label="__('Email')" name="email" required />
<x-form.input tabindex="1" wire:model="name" :label="__('Name')" name="name" required />
<x-form.input tabindex="3" wire:model="email" :label="__('Email')" name="email" required />

<h4>{{ __('Roles') }}</h4>
<p class="font-bold">{{ __('Roles') }}</p>

@error('rolesSelected')
<p class="error">{{ $message }}</p>
@enderror

@foreach($roles as $role)
<x-form.checkbox
wire:model.live="rolesSelected"
wire:model="rolesSelected"
id="{{ $role->id }}"
value="{{ $role->id }}"
label="{{ $role->label }}"
Expand Down

0 comments on commit 6ce3cf7

Please sign in to comment.