@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.gallery.title_singular') }}
@csrf
@if($errors->has('name'))

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

@endif

{{ trans('cruds.gallery.fields.name_helper') }}

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

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

@endif

{{ trans('cruds.gallery.fields.photos_helper') }}

@endsection @section('scripts') @stop