@extends('layout.app') @section('title', 'Edit Brand') @section('content')
Edit Brand
{!! Form::model($brand, ['route' => ['brands.update', $brand->id], 'method' => 'PUT']) !!}
{{ $errors->first('brand_name') }}
{!! Form::radio('status', 1, null, ['class' => 'form-check-input', 'id' => 'active']) !!}
{!! Form::radio('status', 0, null, ['class' => 'form-check-input', 'id' => 'inactive']) !!}
{!! Form::close() !!}
@endsection