@extends('admin.index') @section('title') {{ translate('add_new_theme') }} - @endsection @section('header') @endsection @section('content')
@csrf
{{ translate('example_theme_name') }}
@if (isset($errors->messages()['name']))
    @foreach ($errors->messages()['name'] as $error)
  • {{ $error }}
  • @endforeach
@endif
@endsection @section('footer') @endsection