@extends('layouts.app') @section('title', "Add Service") @section('content') Add Service {!! Form::open(['url' => action([\App\Http\Controllers\WarrantyController::class, 'AddwarrantyServicePost']), 'method' => 'post', 'id' => 'add_warranty_service_form' ]) !!} {!! Form::label('serial_number', __('Enter Product serial number') . ':*') !!} {!! Form::text('serial_number', null, ['class' => 'form-control', 'id'=>'search_warrnty', 'placeholder' => __('Search serial'), 'required']); !!} {!! Form::close() !!} @stop @section('javascript') {{-- --}} @endsection