@extends('layouts.app') @section('styles') @endsection @section('content')
{{ csrf_field() }}

Register Business

{{ Auth::user()->name }} - {{ Auth::user()->email }}

Main Office / Store

@if($errors->has('logo'))
{{ $errors->first('logo') }}
@endif {{ trans('cruds.team.fields.logo_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.branch.fields.name_helper') }}
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif {{ trans('cruds.branch.fields.address_helper') }}
@if($errors->has('province'))
{{ $errors->first('province') }}
@endif {{ trans('cruds.branch.fields.province_helper') }}
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif {{ trans('cruds.branch.fields.city_helper') }}
@if($errors->has('district'))
{{ $errors->first('district') }}
@endif {{ trans('cruds.branch.fields.district_helper') }}
@if($errors->has('postal_code'))
{{ $errors->first('postal_code') }}
@endif {{ trans('cruds.branch.fields.postal_code_helper') }}
@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif {{ trans('cruds.branch.fields.phone_number_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.branch.fields.email_helper') }}
@if($errors->has('website'))
{{ $errors->first('website') }}
@endif {{ trans('cruds.branch.fields.website_helper') }}
@endsection @section('scripts') @endsection