@extends('layouts.master') @section('pagetitle') Add Product Type @endsection @section('title') Add Product Type @endsection @section('content')

Product Type

@csrf @php use App\Models\MerchantSite; $merchant_sites = MerchantSite::where('merchant_id', @auth('web')->user()->id)->first(); @endphp @if($merchant_sites->business_type == 'grocery')
@endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('position')) {{ $errors->first('position') }} @endif
@endsection