@extends('layouts.app', ['title' => __('Add Site')]) @section('content') @include('sites.partials.header', [ 'title' => __('Add a Site'), 'class' => 'col-lg-12' ])

{{ __('Add a new WooCommerce Site') }}

@csrf @method('post') {{--
{{ __('User information') }}
--}} @if (session('status')) @endif
@if ($errors->has('site_name')) {{ $errors->first('site_name') }} @endif
@if ($errors->has('url')) {{ $errors->first('url') }} @endif
@if ($errors->has('key')) {{ $errors->first('key') }} @endif
@if ($errors->has('secret')) {{ $errors->first('secret') }} @endif
@include('layouts.footers.auth')
@endsection