@extends('layouts.app-admin') @section('content')

Edit Brand

Update Brand
{{ Form::open(array('url' => route('brand.update',$get_brand->id),'enctype'=>'multipart/form-data','method'=>'put')) }} {!! csrf_field() !!}
@error('title') {{ $message }} @enderror
@if($get_brand->img)
@endif @error('img') {{ $message }} @enderror
{{ Form::close() }}
@endsection