@extends('layouts.app') @section('title', 'Edit TikTok Shop') @section('content')
Back to TikTok Shops

Edit TikTok Shop

Update the information for this TikTok Shop

@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('description')

{{ $message }}

@enderror
is_active) ? 'checked' : '' }} class="w-4 h-4 text-blue-600 border-gray-300 rounded focus:ring-blue-500 dark:border-gray-600 dark:bg-gray-700">
@error('is_active')

{{ $message }}

@enderror

Select which managers can access and upload data to this TikTok Shop

@php $managers = \App\Models\User::where('role', 'manager')->orderBy('name')->get(); @endphp @if($managers->count() > 0) @foreach($managers as $manager) @endforeach @else

No managers available. Create a manager first.

@endif @error('manager_ids')

{{ $message }}

@enderror
Cancel
@endsection