@extends('admin.layouts.master') @section('title', 'Add Brand') @section('content')

{{ __('Add New Group') }}

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('type'))

{{ $errors->first('type') }}

@endif
@if ($errors->has('description'))

{{ $errors->first('description') }}

@endif
@endsection @section('js') @endsection