@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.partner.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @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)
status) === (string) $key ? 'checked' : '' }}>
@endforeach @if($errors->has('status')) {{ $errors->first('status') }} @endif {{ trans('cruds.partner.fields.status_helper') }}
@endsection @section('scripts') @endsection