@extends('layouts.front', ['title' => __('User Profile')]) @if (strlen(config('settings.recaptcha_site_key'))>2) @section('head') {!! htmlScriptTagJsApi([]) !!} @endsection @endif @section('content') @include('users.partials.header', [ 'title' => "", 'headerImage' =>config('global.restorant_details_cover_image') ])

{{ __('Register your restaurant') }}

@csrf
{{ __('Restaurant information') }}
@if (session('status')) @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif

{{ __('Owner information') }}
@if ($errors->has('name_owner')) {{ $errors->first('name_owner') }} @endif
@if ($errors->has('email_owner')) {{ $errors->first('email_owner') }} @endif
@if ($errors->has('phone_owner')) {{ $errors->first('phone_owner') }} @endif
@if (strlen(config('settings.recaptcha_site_key'))>2) @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif {!! htmlFormButton(__('Save'), ['id'=>'thesubmitbtn','class' => 'btn btn-success mt-4']) !!} @else @endif

@endsection @section('js') @if (isset($_GET['name'])&&$errors->isEmpty()) @endif @endsection