@extends('admin.layouts.app') @section('content')
Dashboard
{{ $module['title'] }}
Edit {{ $module['title_sort'] }}
@csrf @method('put')
Name
*
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif
Description
*
{{ old('description', $industry->description) }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
Status
---Select---
status == 1) echo 'selected'; @endphp>Active
status == 2) echo 'selected'; @endphp>Inactive
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif
Submit
Back
@endsection @push('scripts_footer') @endpush