@extends('admin.layouts.app') @section('content') @if(isset($bundle))

Edit Video Bundle

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('price'))

{{ $errors->first('price') }}

@endif
@if ($errors->has('thumbnail'))

{{ $errors->first('thumbnail') }}

@endif
@if ($errors->has('videos'))

{{ $errors->first('videos') }}

@endif
@else

Create Video Bundle

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('price'))

{{ $errors->first('price') }}

@endif
@if ($errors->has('thumbnail'))

{{ $errors->first('thumbnail') }}

@endif
@if ($errors->has('videos'))

{{ $errors->first('videos') }}

@endif
@endif @section('scripts') @endsection @endsection