You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
2.2 KiB
30 lines
2.2 KiB
<!-- Title of Post Form Input -->
|
|
<div class="form-group @if ($errors->has('title')) has-error @endif">
|
|
{!! Form::label('name', 'Name') !!}
|
|
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => 'Name of Client']) !!}
|
|
@if ($errors->has('name')) <p class="help-block">{{ $errors->first('name') }}</p> @endif
|
|
</div>
|
|
<div class="form-group @if ($errors->has('redirect')) has-error @endif">
|
|
{!! Form::label('redirect', 'Redirect link') !!}
|
|
{!! Form::text('redirect', null, ['class' => 'form-control', 'placeholder' => 'Redirect link of Client']) !!}
|
|
@if ($errors->has('redirect')) <p class="help-block">{{ $errors->first('redirect') }}</p> @endif
|
|
</div>
|
|
<div class="form-group @if ($errors->has('provider')) has-error @endif">
|
|
{!! Form::label('provider', 'Provider Type ') !!} (<a class="text-danger" target="_blank" href="https://laravel.com/docs/9.x/passport#customizing-the-user-provider" title="What is it?">?</a>)
|
|
{!! Form::text('provider', null, ['class' => 'form-control', 'placeholder' => 'Provider Type of Client']) !!}
|
|
@if ($errors->has('provider')) <p class="help-block">{{ $errors->first('provider') }}</p> @endif
|
|
</div>
|
|
<div class="form-group @if ($errors->has('redirect')) has-error @endif">
|
|
{!! Form::label('personal_access_client', 'Personal Access Client') !!} (<a class="text-danger" target="_blank" href="https://laravel.com/docs/9.x/passport#creating-a-personal-access-client" title="What is it?">?</a>)
|
|
{!! Form::checkbox('personal_access_client', '1'); !!}
|
|
@if ($errors->has('personal_access_client')) <p class="help-block">{{ $errors->first('personal_access_client') }}</p> @endif
|
|
</div>
|
|
<div class="form-group @if ($errors->has('password_client')) has-error @endif">
|
|
{!! Form::label('password_client', 'Password Client') !!} (<a class="text-danger" target="_blank" href="https://laravel.com/docs/9.x/passport#creating-a-password-grant-client" title="What is it?">?</a>)
|
|
{!! Form::checkbox('password_client', '1'); !!}
|
|
@if ($errors->has('password_client')) <p class="help-block">{{ $errors->first('password_client') }}</p> @endif
|
|
</div>
|
|
|
|
@push('scripts')
|
|
<script src="//cdn.ckeditor.com/4.6.2/standard/ckeditor.js"></script>
|
|
@endpush
|
|
|