@extends('backend.layouts.app') @section('title', __('labels.backend.access.service_provider.management') . ' | ' . __('labels.backend.access.service_provider.edit')) @section('breadcrumb-links') @include('backend.auth.service_provider.includes.breadcrumb-links') @endsection @section('content') {{ html()->modelForm($user, 'PATCH', route('admin.auth.service_provider.update', $user->id))->class('form-horizontal')->id('service_provider_edit_frm')->attribute('enctype', 'multipart/form-data')->open() }}

@lang('labels.backend.access.service_provider.management') @lang('labels.backend.access.service_provider.edit')


{{ html()->label(__('validation.attributes.frontend.avatar'))->for('avatar') }}
{{ html()->file('avatar_location')->class('form-control')->accept('.png,.jpg,.jpeg') }}
{{ html()->label(__('validation.attributes.backend.access.service_provider.first_name'))->class('col-md-2 form-control-label')->for('first_name') }}
{{ html()->text('first_name') ->class('form-control') ->placeholder(__('validation.attributes.backend.access.service_provider.first_name')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.backend.access.service_provider.last_name'))->class('col-md-2 form-control-label')->for('last_name') }}
{{ html()->text('last_name') ->class('form-control') ->placeholder(__('validation.attributes.backend.access.service_provider.last_name')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.backend.access.service_provider.email'))->class('col-md-2 form-control-label')->for('email') }}
{{ html()->email('email') ->class('form-control') ->placeholder(__('validation.attributes.backend.access.service_provider.email')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.backend.access.service_provider.company_service_desc'))->class('col-md-2 form-control-label')->for('company_service_desc') }}
{{ html()->textarea('company_service_desc') ->class('form-control') ->placeholder(__('validation.attributes.backend.access.service_provider.company_service_desc')) ->attribute('maxlength', 300) ->required() }}
{{ html()->label(__('validation.attributes.backend.access.service_provider.city'))->class('col-md-2 form-control-label')->for('city') }}
{{ html()->label(__('validation.attributes.backend.access.service_provider.services'))->class('col-md-2 form-control-label')->for('services') }}
{{ html()->closeModelForm() }} @endsection