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

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

{{ __('Add Partner') }}

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

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

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

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

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

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

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

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

@endif
@endsection