@extends('admin.layout') @section('admin-title') {{ $category->id ? 'Edit' : 'Create' }} Prompt Category @endsection @section('admin-content') {!! breadcrumbs([ 'Admin Panel' => 'admin', 'Prompt Categories' => 'admin/data/prompt-categories', ($category->id ? 'Edit' : 'Create') . ' Category' => $category->id ? 'admin/data/prompt-categories/edit/' . $category->id : 'admin/data/prompt-categories/create', ]) !!}

{{ $category->id ? 'Edit' : 'Create' }} Prompt Category @if ($category->id) Delete Category @endif

{!! Form::open(['url' => $category->id ? 'admin/data/prompt-categories/edit/' . $category->id : 'admin/data/prompt-categories/create', 'files' => true]) !!}

Basic Information

{!! Form::label('Name') !!} {!! Form::text('name', $category->name, ['class' => 'form-control']) !!}
{!! Form::label('World Page Image (Optional)') !!} {!! add_help('This image is used only on the world information pages.') !!}
{!! Form::label('image', 'Choose file...', ['class' => 'custom-file-label']) !!} {!! Form::file('image', ['class' => 'custom-file-input']) !!}
Recommended size: 200px x 200px
@if ($category->has_image)
{!! Form::checkbox('remove_image', 1, false, ['class' => 'form-check-input']) !!} {!! Form::label('remove_image', 'Remove current image', ['class' => 'form-check-label']) !!}
@endif
{!! Form::label('Description (Optional)') !!} {!! Form::textarea('description', $category->description, ['class' => 'form-control wysiwyg']) !!}
{!! Form::submit($category->id ? 'Edit' : 'Create', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!} @if ($category->id)

Preview

@include('prompts._entry', ['imageUrl' => $category->categoryImageUrl, 'name' => $category->displayName, 'description' => $category->parsed_description])
@endif @endsection @section('scripts') @parent @endsection