@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.partner.title_singular') }}
@csrf
@if($errors->has('title')) {{ $errors->first('title') }} @endif {{ trans('cruds.partner.fields.title_helper') }}
@if($errors->has('link')) {{ $errors->first('link') }} @endif {{ trans('cruds.partner.fields.link_helper') }}
@if($errors->has('image')) {{ $errors->first('image') }} @endif {{ trans('cruds.partner.fields.image_helper') }}
@if($errors->has('order')) {{ $errors->first('order') }} @endif {{ trans('cruds.partner.fields.order_helper') }}
@foreach(App\Models\Partner::STATUS_RADIO as $key => $label)
@endforeach @if($errors->has('status')) {{ $errors->first('status') }} @endif {{ trans('cruds.partner.fields.status_helper') }}
@endsection @section('scripts') @endsection