@extends('layouts.app') @section('site_title', formatTitle([__('Edit'), __('Pixel'), config('settings.title')])) @section('content')
@include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => request()->is('admin/*') ? route('admin.dashboard') : route('dashboard'), 'title' => request()->is('admin/*') ? __('Admin') : __('Home')], ['url' => request()->is('admin/*') ? route('admin.pixels') : route('pixels'), 'title' => __('Pixels')], ['title' => __('Edit')], ]])

{{ __('Edit') }}

{{ __('Pixel') }}
@include('shared.message')
@csrf @if(request()->is('admin/*')) @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@if ($errors->has('value')) {{ $errors->first('value') }} @endif {{ __('The pixel ID value.') }}
@if(request()->is('admin/*'))
{{ $pixel->user->name }} @include((__('lang_dir') == 'rtl' ? 'icons.chevron-left' : 'icons.chevron-right'), ['class' => 'flex-shrink-0 w-3 h-3 fill-current ms-auto'])
@if($pixel->links_count)
@include('icons.link', ['class' => 'fill-current w-4 h-4'])
{{ __('Links') }} {{ number_format($pixel->links_count, 0, __('.'), __(',')) }} @include((__('lang_dir') == 'rtl' ? 'icons.chevron-left' : 'icons.chevron-right'), ['class' => 'flex-shrink-0 w-3 h-3 fill-current ms-auto'])
@endif
@endif
@endsection @if(request()->is('admin/*')) @include('shared.sidebars.admin') @else @include('shared.sidebars.user') @endif