@extends('admin.layouts.master-soyuz') @section('title', __('Edit Short |')) @section('body') @component('admin.component.breadcumb', ['thirdactive' => 'active']) @slot('heading') {{ __('Edit Short') }} @endslot @slot('menu1') {{ __('Products') }} @endslot @slot('menu2') {{ __('Shorts') }} @endslot @endcomponent
@if ($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif
{{ __('Back') }}

{{ __('Edit Short') }}

@csrf @method('PUT')

status == 1 ? 'checked' : '' }}> {{ __('Active') }}
@if($short->video) {{ __('Current video') }} @endif
@if($short->thumbnail && file_exists(public_path('images/shorts/' . $short->thumbnail)))
@endif
@endsection