b extends('admin.layout') @section('content')

{{ __('Gallery') }}

{{ __('Add New Gallery') }}

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

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

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

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

@endif

{{ __('Upload 730X455 (Pixel) Size image for best quality. Only jpg, jpeg, png image is allowed.') }}

@if ($errors->has('title'))

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

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

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

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

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

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

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

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

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

@endif
@endsection