@extends('admin.layouts.main') @section('title', $registrar->exists ? 'Edit Registrar' : 'Create Registrar') @section('menu', 'Registrars') @section('content')
@csrf @if($registrar->exists) @method('PUT') @endif
Registrar Details
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('driver')){{ $errors->first('driver') }}@endif
@if ($errors->has('base_url')){{ $errors->first('base_url') }}@endif
@if ($errors->has('priority')){{ $errors->first('priority') }}@endif
Credentials
@if ($errors->has('credentials_data')){{ $errors->first('credentials_data') }}@endif Enter credentials as valid JSON. The keys depend on the selected driver.
Options
@if ($errors->has('status')){{ $errors->first('status') }}@endif
is_sandbox) ? 'checked' : '' }}>
Publish
@endsection